mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Update ComposeModal.vue, fix scroll issue and dont hide scrollbar
This commit is contained in:
parent
43b101dbfa
commit
2d959fb354
1 changed files with 2 additions and 6 deletions
|
@ -193,7 +193,7 @@
|
||||||
class="list-group-item cursor-pointer"
|
class="list-group-item cursor-pointer"
|
||||||
:class="{
|
:class="{
|
||||||
'text-primary': licenseId === item.id,
|
'text-primary': licenseId === item.id,
|
||||||
'font-weight-bold': licenseId === item.id
|
'font-weight-bold': licenseId === item.id
|
||||||
}"
|
}"
|
||||||
@click="toggleLicense(item)">
|
@click="toggleLicense(item)">
|
||||||
{{item.name}}
|
{{item.name}}
|
||||||
|
@ -1884,13 +1884,9 @@ export default {
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.compose-modal-component {
|
.compose-modal-component {
|
||||||
.media-drawer-filters {
|
.media-drawer-filters {
|
||||||
overflow-x: scroll;
|
overflow-x: auto;
|
||||||
flex-wrap:unset;
|
flex-wrap:unset;
|
||||||
}
|
}
|
||||||
.media-drawer-filters::-webkit-scrollbar {
|
|
||||||
width: 0px;
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
.media-drawer-filters .nav-link {
|
.media-drawer-filters .nav-link {
|
||||||
min-width:100px;
|
min-width:100px;
|
||||||
padding-top: 1rem;
|
padding-top: 1rem;
|
||||||
|
|
Loading…
Reference in a new issue