cs-2022-class-profile/components/SideComponentWrapper.module...

47 lines
901 B
CSS
Raw Normal View History

2022-08-08 23:15:38 -04:00
.wrapperCommon {
background-color: var(--secondary-background);
display: flex;
padding: calc(40rem / 16) calc(50rem / 16);
margin: calc(40rem / 16) 0;
2022-08-12 00:20:55 -04:00
width: 90%;
2022-08-08 23:15:38 -04:00
}
.wrapperRight {
composes: wrapperCommon;
align-self: end;
margin-right: 0;
padding-right: 0;
border-radius: calc(200rem / 16) 0 0 calc(200rem / 16);
2022-08-12 00:20:55 -04:00
flex-direction: row-reverse;
padding-right: calc(50rem / 16);
2022-08-08 23:15:38 -04:00
}
.wrapperLeft {
composes: wrapperCommon;
align-self: start;
margin-left: 0;
padding-left: 0;
2022-08-12 00:20:55 -04:00
border-radius: 0 calc(200rem / 16) calc(200rem / 16) 0;
flex-direction: row;
padding-left: calc(50rem / 16);
}
.noBackground {
background: none;
2022-08-08 23:15:38 -04:00
}
@media screen and (max-width: 768px) {
.wrapperCommon {
2022-08-12 00:20:55 -04:00
margin: auto;
flex-direction: column;
2022-08-12 00:20:55 -04:00
text-align: center;
padding: 0;
border-radius: 0;
width: 100%;
}
2022-08-08 23:15:38 -04:00
}
2022-08-12 00:20:55 -04:00
.internalWrapper {
padding: calc(20rem / 16);
2022-08-08 23:15:38 -04:00
}