only set overflow-x on small screen (#18113)

This commit is contained in:
Suzanne Aitchison 2022-07-14 15:15:58 +01:00 committed by GitHub
parent ba1e1a19ab
commit 4ea6dc26ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,6 +34,12 @@
height: 0;
}
}
@media (min-width: $breakpoint-m) {
.editor-toolbar {
overflow-x: unset;
}
}
}
&__inner {