Change from grid to flexbox for monogram

This commit is contained in:
n loewen 2023-09-20 18:18:46 -07:00
parent d6efc2affa
commit 5d09048fe4
1 changed files with 3 additions and 2 deletions

View File

@ -31,14 +31,15 @@ body {
}
.monogram {
display: grid;
grid-template-columns: 50% 50%;
display: flex;
}
.triangle {
display: block; /* Because these are <a> tags */
background-color: black;
position: relative; /* Required for the absolute positioning of the triangle-label */
width: 20vh;
height: 20vh;
}
.triangle-bottom {