feature-change-applier/src/PhonoChangeApplier.scss

28 lines
470 B
SCSS
Raw Normal View History

div.App {
height: 100vh;
width: 100vw;
line-height: 1.25em;
h1 {
font-size: 2em;
padding: 1em 0;
}
2020-02-26 23:23:39 +00:00
h3 {
font-size: 1.25em;
padding: 0.5em 0;
}
div.PhonoChangeApplier {
display: grid;
width: 100%;
place-items: center center;
grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
grid-template-rows: repeat(auto-fill, minmax(300px, 1fr));
div {
padding: 1em;
overflow-y: scroll;
}
}
}