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

38 lines
500 B
CSS
Raw Normal View History

2024-10-30 15:28:41 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-01-09 11:41:44 +00:00
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;
2024-03-14 09:13:07 +00:00
flex-grow: 2;
padding: 0 30px 30px 30px;
}
2024-10-30 15:28:41 +00:00
.anchor svg {
2024-10-30 15:34:21 +00:00
display: inline;
2024-10-16 08:28:07 +00:00
}
2024-03-14 09:13:07 +00:00
@media only screen and (max-width: 720px) {
body {
flex-direction: column;
}
}