Include some utility classes

This commit is contained in:
Oliver Davies 2019-01-24 09:51:58 +00:00
parent 97f77a6a4f
commit 89070714c1

5
source/css/utilities.css Normal file
View file

@ -0,0 +1,5 @@
.flex { display: flex; }
.flex-1 { flex: 1; }
.flex-col { flex-direction: column; }
.h-full { height: 100%; }
.justify-between { justify-content: space-between; }