mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-23 22:45:06 -04:00
32 lines
438 B
CSS
32 lines
438 B
CSS
.appProfile {
|
|
composes: card from '~Components/Card.css';
|
|
|
|
width: 300px;
|
|
}
|
|
|
|
.nameContainer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.name {
|
|
@add-mixin truncate;
|
|
|
|
margin-bottom: 20px;
|
|
font-weight: 300;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.cloneButton {
|
|
composes: button from '~Components/Link/IconButton.css';
|
|
|
|
height: 36px;
|
|
}
|
|
|
|
.tooltipLabel {
|
|
composes: label from '~Components/Label.css';
|
|
|
|
margin: 0;
|
|
border: none;
|
|
}
|