trigen/css/style.css

37 lines
529 B
CSS
Raw Normal View History

2022-03-07 23:13:58 +01:00
html {
height: -webkit-fill-available;
}
body {
height: 100vh;
height: -webkit-fill-available;
}
main {
display: flex;
flex-wrap: nowrap;
height: 100vh;
height: -webkit-fill-available;
max-height: 100vh;
overflow-x: auto;
overflow-y: hidden;
}
#left-nav {
overflow-x: hidden;
overflow-y: scroll;
}
.hoverGrow:hover {
transform: scale(1.025);
transition-duration: .2s;
}
#svg-center {
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
align-self: center;
}