Fixed missing bottom margin in site list.
This commit is contained in:
parent
8564d64fa1
commit
f652b0d91c
|
@ -61,11 +61,15 @@ export default {
|
|||
|
||||
.tiles {
|
||||
display: grid;
|
||||
grid-gap: 1rem;
|
||||
grid-gap: 0 1rem;
|
||||
flex-grow: 1;
|
||||
padding: 1rem;
|
||||
margin: 0;
|
||||
grid-template-columns: 1fr;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.tile {
|
||||
/* vertical grid-gap not compatible with bottom padding on scrolling containers */
|
||||
margin: 0 0 1rem 0;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -676,14 +676,17 @@
|
|||
}
|
||||
.tiles[data-v-7bebaa3e] {
|
||||
display: grid;
|
||||
grid-gap: 1rem;
|
||||
grid-gap: 0 1rem;
|
||||
-webkit-box-flex: 1;
|
||||
flex-grow: 1;
|
||||
padding: 1rem;
|
||||
margin: 0;
|
||||
grid-template-columns: 1fr;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.tile[data-v-7bebaa3e] {
|
||||
/* vertical grid-gap not compatible with bottom padding on scrolling containers */
|
||||
margin: 0 0 1rem 0;
|
||||
}
|
||||
|
||||
/* $primary: #ff886c; */
|
||||
/* $logo-highlight: drop-shadow(1px 0 0 $highlight-weak) drop-shadow(-1px 0 0 $highlight-weak) drop-shadow(0 1px 0 $highlight-weak) drop-shadow(0 -1px 0 $highlight-weak); */
|
||||
|
|
Loading…
Reference in New Issue