6 lines
163 B
CSS
6 lines
163 B
CSS
|
.flex { display: flex; }
|
||
|
.flex-1 { flex: 1; }
|
||
|
.flex-col { flex-direction: column; }
|
||
|
.h-full { height: 100%; }
|
||
|
.justify-between { justify-content: space-between; }
|