mirror of
https://github.com/Readarr/Readarr
synced 2025-12-28 03:09:38 +01:00
36 lines
495 B
CSS
36 lines
495 B
CSS
.metadataProfile {
|
|
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;
|
|
}
|
|
|
|
.enabled {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.label {
|
|
composes: label from '~Components/Label.css';
|
|
|
|
max-width: 100%;
|
|
}
|