1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-11-22 09:51:09 +00:00
ibis/assets/ibis.css

37 lines
500 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
html {
height: 100%;
width: 100%;
}
body {
flex-direction: row;
display: flex;
min-height: 100%;
min-width: 100%;
padding: 0;
}
nav {
background-color: #f6f6f6;
padding: 10px;
}
main {
background-color: #ffffff;
flex-grow: 2;
padding: 0 30px 30px 30px;
}
.anchor svg {
display: inline;
}
@media only screen and (max-width: 720px) {
body {
flex-direction: column;
}
}