mirror of
https://github.com/danbee/scoreboard
synced 2025-03-04 08:59:11 +00:00
Add mozilla specific prefixes for flexbox.
This commit is contained in:
parent
3ac9ef57d3
commit
cd631a5c77
@ -7,11 +7,18 @@ body {
|
||||
position: absolute;
|
||||
top: 0; bottom: 2em; left: 0; right: 0;
|
||||
display: -webkit-flex;
|
||||
display: -moz-flex;
|
||||
display: flex;
|
||||
-webkit-flex-direction: row;
|
||||
-moz-flex-direction: row;
|
||||
flex-direction: row;
|
||||
}
|
||||
.scores div { position: relative; -webkit-flex-grow: 1; }
|
||||
.scores div {
|
||||
position: relative;
|
||||
-webkit-flex-grow: 1;
|
||||
-moz-flex-grow: 1;
|
||||
flex-grow: 1;
|
||||
}
|
||||
.scores div .score {
|
||||
position: absolute;
|
||||
bottom: 2rem;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user