Fix overlapping, footer position

This commit is contained in:
Oliver Davies 2019-01-24 16:30:26 +00:00
parent 7e09daea22
commit 366d65c567
2 changed files with 11 additions and 4 deletions

View file

@ -1,5 +1,12 @@
.bg-black { background-color: #111111; }
.flex { display: flex; }
.flex-1 { flex: 1; }
.flex-col { flex-direction: column; }
.font-bold { font-weight: bold; }
.h-full { height: 100%; }
.justify-between { justify-content: space-between; }
.p-4 { padding: 1rem; }
.text-center { text-align: center; }
.text-lg { font-size: 1.2rem; }
.text-white { color: #FFFFFF; }
.uppercase { text-transform: uppercase; }