mirror of https://gitlab.com/tildes/tildes.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
634 B
28 lines
634 B
// Copyright (c) 2019 Tildes contributors <code@tildes.net>
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
.theme-preview-blocks {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
max-width: $paragraph-max-width;
|
|
}
|
|
|
|
.theme-preview-block {
|
|
min-width: 6rem;
|
|
margin: 0.4rem;
|
|
padding: 1rem;
|
|
|
|
text-align: center;
|
|
font-weight: bold;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.theme-preview-fake-posts {
|
|
// Disables all click events (and hover) on the fake posts so links/buttons don't work
|
|
pointer-events: none;
|
|
|
|
// Set a max width on the fake topics so the vote button isn't way off to the right
|
|
.topic {
|
|
max-width: $paragraph-max-width;
|
|
}
|
|
}
|