feat: Responsiveness for lists
- New style for lists - Change index list layout
This commit is contained in:
parent
dd8b461034
commit
3ae1cebdd6
3 changed files with 37 additions and 22 deletions
|
|
@ -281,10 +281,19 @@
|
|||
.hello {
|
||||
flex: 0 1 auto;
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding: 1em 5em;
|
||||
background-color: hippie.$color_darker;
|
||||
.responsive {
|
||||
@include hippie.forTabletPortraitUp {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
align-items: stretch;
|
||||
justify-content: space-between;
|
||||
gap: hippie.$space_half hippie.$space_basic;
|
||||
|
||||
& > * {
|
||||
flex: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue