Change from grid to flexbox for monogram
This commit is contained in:
parent
d6efc2affa
commit
5d09048fe4
|
|
@ -31,14 +31,15 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.monogram {
|
.monogram {
|
||||||
display: grid;
|
display: flex;
|
||||||
grid-template-columns: 50% 50%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.triangle {
|
.triangle {
|
||||||
display: block; /* Because these are <a> tags */
|
display: block; /* Because these are <a> tags */
|
||||||
background-color: black;
|
background-color: black;
|
||||||
position: relative; /* Required for the absolute positioning of the triangle-label */
|
position: relative; /* Required for the absolute positioning of the triangle-label */
|
||||||
|
width: 20vh;
|
||||||
|
height: 20vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.triangle-bottom {
|
.triangle-bottom {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue