cs-2022-class-profile/components/CenterWrapper.module.css

15 lines
288 B
CSS
Raw Normal View History

.textbox {
2022-12-19 23:04:54 -05:00
display: flex;
flex-direction: column;
width: 80%;
padding: calc(80rem / 16);
background-color: var(--secondary-background);
border-radius: calc(20rem / 16);
2022-12-30 18:59:53 -05:00
align-self: center;
}
2022-12-19 23:04:54 -05:00
@media screen and (max-width: 900px) {
.textbox {
align-items: center;
}
}