Stop specialized views breaking on thin screens

This isn't great, but at least it won't be as broken as it was before.
I'll try to follow this up with a better improvement soon.
This commit is contained in:
Deimos
2020-03-19 11:59:56 -06:00
parent fea2884343
commit dbaf4c61e2

View File

@@ -19,13 +19,17 @@
.toast {
width: auto;
margin: 0 0.2rem 0 0;
padding: 0.2rem 0.4rem 0.2rem 1.4rem;
text-indent: -1rem;
overflow: hidden;
margin: 0 0.2rem 0 -1rem;
padding: 0.2rem 0.4rem;
a {
white-space: nowrap;
@media (min-width: $size-xs) {
margin-left: 0;
text-indent: -1rem;
padding-left: 1.4rem;
a {
white-space: nowrap;
}
}
}
}