Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* hide scrollbar */
- .deck-row.svelte-y0gsq3.svelte-y0gsq3 {
- scrollbar-width: none;
- }
- /* hide translate button */
- .timeline-translate-button {
- display: none;
- }
- /* hide separator (·) after the date */
- .timeline__date:not(:last-child):after {
- display: none;
- }
- /* hide notification tab filters */
- .notifications-filter-display {
- display: none;
- }
- /* adds a border between the header and the first tweet */
- .deck-heading {
- border-bottom: 1px solid #4c5669 !important;
- }
- /* eliminates a 1px border the columns have for some reason */
- .deck-row {
- border: 0 !important;
- }
- /* compose button styling */
- .publish-sp-open {
- right: unset;
- left: 72px;
- }
- /* hides the content of the tweet that's being replied */
- .timeline__column--reply .timeline-warn-wrap {
- display: none;
- }
- /* hides pinned post in columns */
- .timeline__item.timeline__item--compact:has(.sticky-text) {
- display: none;
- }
- /* unhides pinned post in profile view */
- .profile .timeline__item.timeline__item--compact:has(.sticky-text) {
- display: block;
- }
- /* hides modal scrollbars */
- .decks .modal-page-content {
- scrollbar-width: none;
- border-radius: 10px;
- }
- /* decreases the space between tab header and the first tweet */
- .timeline {
- padding-top: 8px
- }
- /* compose box styling */
- .publish-wrap {
- border: 1px solid var(--border-color-1);
- padding: 16px;
- border-radius: 10px;
- max-width: 600px;
- }
- /* compose box styling */
- .publish-group {
- left: 136px;
- bottom: 20px;
- }
- /* hides the refresh animation */
- .refresher {
- display: none !important;
- }
- /* fixes missing right padding in composer box */
- .editor-column.svelte-12ph8td.svelte-12ph8td {
- padding: 12px;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement