mirror of
https://github.com/wassname/talk.git
synced 2026-07-03 23:34:23 +08:00
13 lines
224 B
CSS
13 lines
224 B
CSS
@custom-media --table-viewport (max-width: 1024px);
|
|
|
|
:global {
|
|
.mdl-layout__drawer-button {
|
|
visibility: hidden;
|
|
}
|
|
|
|
@media (--table-viewport) {
|
|
.mdl-layout__drawer-button {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
} |