Skip to content
Snippets Groups Projects
Commit f26758dc authored by unarist's avatar unarist Committed by Eugen Rochko
Browse files

Fix .information-board style for Safari (#4602)

flex-basis: 0 allows make flexbox smaller than its contents on Safari <10.

https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored
parent 23792f5a
No related branches found
No related tags found
No related merge requests found
......@@ -171,7 +171,7 @@
}
.section {
flex: 1 0 0;
flex: 1 0 auto;
font: 16px/28px 'mastodon-font-sans-serif', sans-serif;
text-align: right;
padding: 10px 15px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment