soapbox/app/styles/components/detailed-status.scss

26 wiersze
555 B
SCSS
Czysty Zwykły widok Historia

.thread {
@apply bg-white dark:bg-primary-900 p-4 shadow-xl dark:shadow-none sm:p-6 sm:rounded-xl;
2021-10-09 16:42:31 +00:00
&__status {
2022-04-23 17:20:25 +00:00
@apply relative pb-4;
2022-03-21 18:09:01 +00:00
.status__wrapper {
@apply shadow-none p-0;
}
2022-03-21 18:09:01 +00:00
}
2022-04-23 17:20:25 +00:00
.status__content-wrapper {
2022-12-23 21:46:24 +00:00
@apply pl-[calc(42px+12px)] rtl:pl-0 rtl:pr-[calc(42px+12px)];
2021-10-09 16:42:31 +00:00
}
2022-03-21 18:09:01 +00:00
&__connector {
2022-12-23 21:46:24 +00:00
@apply bg-gray-200 dark:bg-primary-800 absolute w-0.5 left-5 hidden z-[1] rtl:right-5 rtl:left-auto;
2022-03-21 18:09:01 +00:00
&--bottom {
@apply block;
2022-04-23 17:20:25 +00:00
height: calc(100% - 42px - 8px - 1rem);
2022-03-21 18:09:01 +00:00
top: calc(12px + 42px);
}
}
}