18 lines
488 B
CSS
18 lines
488 B
CSS
/**
|
|
* Due to css import issues with parallel routes we are forced to
|
|
* use a regular css file and import it in the page.tsx
|
|
*/
|
|
.profile-layout {
|
|
background-color: var(--Main-Grey-White);
|
|
border-radius: var(--Corner-radius-xLarge);
|
|
display: grid;
|
|
gap: var(--Spacing-x4);
|
|
padding: var(--Spacing-x2) var(--Spacing-x2) var(--Spacing-x4);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.profile-layout {
|
|
padding: var(--Spacing-x3) var(--Spacing-x3) var(--Spacing-x4);
|
|
}
|
|
}
|