mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-21 20:21:32 +10:00
24 lines
490 B
CSS
24 lines
490 B
CSS
.container {
|
|
@apply relative h-screen w-screen overflow-hidden flex items-start justify-center;
|
|
}
|
|
|
|
.left {
|
|
width: calc(100vw / 4);
|
|
box-shadow: var(--left-shadow);
|
|
|
|
@apply bg-primary-50 absolute top-0 bottom-0 left-0 z-10;
|
|
}
|
|
|
|
.center {
|
|
width: calc(100vw / 2);
|
|
|
|
@apply relative z-0 h-screen overflow-scroll flex flex-col justify-items-center;
|
|
}
|
|
|
|
.right {
|
|
width: calc(100vw / 4);
|
|
box-shadow: var(--right-shadow);
|
|
|
|
@apply bg-primary-50 absolute top-0 bottom-0 right-0 z-10;
|
|
}
|