mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-17 00:21:20 -05:00
Retaining Flex Layout
This commit is contained in:
parent
733c3d1bff
commit
04adcb5063
1 changed files with 6 additions and 4 deletions
|
@ -2,14 +2,15 @@
|
|||
|
||||
.about {
|
||||
.masthead {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(461px, 1fr));;
|
||||
display: flex;
|
||||
flex-wrap: no-wrap;
|
||||
justify-content: space-between;
|
||||
align-items: stretch;
|
||||
|
||||
div {
|
||||
display: inline-block;
|
||||
width: calc(100% - 10px);
|
||||
width: calc(50% - 10px);
|
||||
min-width: calc(50% - 10px);
|
||||
|
||||
ul {
|
||||
margin: 0;
|
||||
|
@ -30,8 +31,9 @@
|
|||
|
||||
iframe {
|
||||
border: 1px solid $ui-gray;
|
||||
width: 460px;
|
||||
width: 100%;
|
||||
height: 290px;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue