2022-03-21 18:09:01 +00:00
|
|
|
body {
|
|
|
|
@apply antialiased;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2020-03-27 20:59:38 +00:00
|
|
|
}
|
|
|
|
|
2022-03-21 18:09:01 +00:00
|
|
|
body.with-modals {
|
|
|
|
@apply overflow-hidden;
|
2020-03-27 20:59:38 +00:00
|
|
|
}
|
|
|
|
|
2022-03-21 18:09:01 +00:00
|
|
|
// Note: this is needed for React HotKeys performance. Removing this
|
|
|
|
// will cause severe performance degradation on Safari.
|
2023-02-06 17:18:49 +00:00
|
|
|
div[tabindex='-1']:focus {
|
2022-03-21 18:09:01 +00:00
|
|
|
outline: 0;
|
2020-03-27 20:59:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
::selection {
|
2022-03-21 18:09:01 +00:00
|
|
|
@apply bg-primary-600 text-white;
|
2020-03-27 20:59:38 +00:00
|
|
|
}
|
|
|
|
|
2020-06-03 02:11:01 +00:00
|
|
|
noscript {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2020-08-02 23:53:47 +00:00
|
|
|
|
2022-09-30 18:35:26 +00:00
|
|
|
.emojione {
|
2022-12-02 20:15:59 +00:00
|
|
|
@apply w-4 h-4 -mt-[0.2ex] mb-[0.2ex] inline-block align-middle object-contain;
|
2022-09-30 18:35:26 +00:00
|
|
|
}
|
|
|
|
|
2022-07-30 18:54:43 +00:00
|
|
|
// Virtuoso empty placeholder fix.
|
|
|
|
// https://gitlab.com/petyosi/soapbox-fe/-/commit/1e22c39934b60e5e186de804060ecfdf1955b506
|
2023-02-06 17:18:49 +00:00
|
|
|
div[data-viewport-type='window'] {
|
2022-07-30 18:54:43 +00:00
|
|
|
position: static !important;
|
|
|
|
}
|