14 lines
190 B
CSS
14 lines
190 B
CSS
div#camera {
|
|
display: grid;
|
|
align-items: center;
|
|
justify-items: center;
|
|
grid-template-rows: repeat(2, 1fr);
|
|
|
|
button {
|
|
font-size: 2em;
|
|
|
|
&:not(.active) {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|