mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-27 23:04: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 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
&.desktop-only {
|
||||
display: flex;
|
||||
max-height: 40%;
|
||||
@media all and not ($mobile) {
|
||||
display: flex;
|
||||
max-height: 40%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user