mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-30 08:14:05 -06:00
fix(layout): properly apply desktop-only to toc component
This commit is contained in:
parent
0d1f15d37c
commit
1609ce5d02
@ -1,9 +1,13 @@
|
|||||||
|
@use "../../styles/variables.scss" as *;
|
||||||
|
|
||||||
.toc {
|
.toc {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
&.desktop-only {
|
&.desktop-only {
|
||||||
display: flex;
|
@media all and not ($mobile) {
|
||||||
max-height: 40%;
|
display: flex;
|
||||||
|
max-height: 40%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user