Fixed network site list overflow.
This commit is contained in:
parent
258a9141f0
commit
edaf659bf8
|
@ -52,7 +52,10 @@ export default {
|
|||
display: flex;
|
||||
|
||||
&.compact:not(.expanded) {
|
||||
flex-direction: row;
|
||||
|
||||
.tiles {
|
||||
display: flex;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
|
|
|
@ -650,7 +650,14 @@
|
|||
display: -webkit-box;
|
||||
display: flex;
|
||||
}
|
||||
.sites.compact[data-v-7bebaa3e]:not(.expanded) {
|
||||
-webkit-box-orient: horizontal;
|
||||
-webkit-box-direction: normal;
|
||||
flex-direction: row;
|
||||
}
|
||||
.sites.compact:not(.expanded) .tiles[data-v-7bebaa3e] {
|
||||
display: -webkit-box;
|
||||
display: flex;
|
||||
overflow-x: auto;
|
||||
}
|
||||
.sites.compact:not(.expanded) .tile[data-v-7bebaa3e] {
|
||||
|
|
Loading…
Reference in New Issue