4
0
forked from crowetic/commerce

24 lines
329 B
CSS
Raw Normal View History

2020-10-26 20:02:29 -03:00
.root {
@apply py-12 flex flex-col w-full px-6;
@screen md {
@apply flex-row;
}
2020-10-26 21:13:58 -03:00
& .asideWrapper {
@apply pr-3 w-full relative;
2020-10-26 20:02:29 -03:00
2020-10-26 21:13:58 -03:00
@screen md {
@apply w-48;
}
2020-10-26 20:02:29 -03:00
}
2020-10-26 21:13:58 -03:00
& .aside {
@apply flex flex-row w-full justify-around mb-12;
2020-10-26 20:02:29 -03:00
2020-10-26 21:13:58 -03:00
@screen md {
@apply mb-0 block sticky top-32;
}
2020-10-26 20:02:29 -03:00
}
}