Files
fluxer/fluxer_app/src/components/modals/GuildOwnershipWarningModal.module.css
Hampus Kraft 2f557eda8c initial commit
2026-01-01 21:05:54 +00:00

82 lines
1.6 KiB
CSS

/*
* Copyright (C) 2026 Fluxer Contributors
*
* This file is part of Fluxer.
*
* Fluxer is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Fluxer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Fluxer. If not, see <https://www.gnu.org/licenses/>.
*/
.content {
display: flex;
flex-direction: column;
gap: 16px;
color: var(--text-primary);
}
.guildList {
display: flex;
flex-direction: column;
gap: 8px;
}
.guildItem {
display: flex;
align-items: center;
gap: 12px;
border-radius: 6px;
border: 1px solid var(--background-header-secondary);
background-color: var(--background-secondary);
padding: 12px;
}
.guildIcon {
font-size: 16px;
display: inline-flex;
align-items: center;
justify-content: center;
--guild-icon-size: 40px;
}
.guildInfo {
flex: 1;
}
.guildName {
font-weight: 500;
color: var(--text-primary);
}
.remainingCount {
text-align: center;
font-size: 14px;
color: var(--text-primary-muted);
}
.helpText {
color: var(--text-primary-muted);
}
.footer {
display: flex;
flex-wrap: wrap;
align-items: center;
width: 100%;
gap: 8px;
}
.footer > * {
flex: 1;
min-width: fit-content;
}