Add container query to chapter action bars

This commit is contained in:
Tetrakern 2024-08-10 18:32:19 +02:00
parent 51378a7afd
commit 11ed68a5a6
3 changed files with 13 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -11,6 +11,10 @@
}
}
.hide-below-tablet {
display: none !important;
}
&-right {
flex-basis: 19%;
}
@ -38,6 +42,7 @@
display: flex;
align-items: center;
justify-content: space-between;
container-type: inline-size;
&-left {
flex-basis: 19%;
@ -45,6 +50,12 @@
&-center {
flex-basis: 56%;
@container (max-width: 600px) {
.hide-below-tablet {
display: none !important;
}
}
}
&-right {