98 lines
1.5 KiB
SCSS
98 lines
1.5 KiB
SCSS
.About.DialogContent {
|
|
gap: 0;
|
|
padding-bottom: $unit;
|
|
|
|
& > div:not(.DialogHeader) {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit-2x;
|
|
padding: 0 $unit-4x;
|
|
}
|
|
|
|
.sections {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit-2x;
|
|
}
|
|
|
|
section {
|
|
margin-bottom: $unit;
|
|
|
|
& > h2 {
|
|
font-size: $font-medium;
|
|
font-weight: $medium;
|
|
margin-bottom: $unit * 3;
|
|
}
|
|
}
|
|
|
|
p {
|
|
color: var(--text-secondary);
|
|
font-size: $font-regular;
|
|
line-height: 1.3;
|
|
margin-bottom: $unit;
|
|
|
|
&:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.Links {
|
|
display: grid;
|
|
gap: $unit;
|
|
margin: $unit-2x 0;
|
|
}
|
|
|
|
div.LinkItem {
|
|
margin-top: $unit-2x;
|
|
}
|
|
|
|
.LinkItem {
|
|
$diameter: $unit-6x;
|
|
border: 1px solid var(--link-item-bg);
|
|
border-radius: $card-corner;
|
|
|
|
&:hover {
|
|
background-color: var(--link-item-bg);
|
|
|
|
svg {
|
|
fill: var(--link-item-image-color-hover);
|
|
}
|
|
}
|
|
|
|
a {
|
|
display: flex;
|
|
padding: $unit-2x;
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.Left {
|
|
align-items: center;
|
|
display: flex;
|
|
gap: $unit-2x;
|
|
flex-grow: 1;
|
|
|
|
h3 {
|
|
font-weight: 600;
|
|
max-width: 70%;
|
|
line-height: 1.3;
|
|
}
|
|
}
|
|
|
|
svg {
|
|
fill: var(--link-item-image-color);
|
|
width: $diameter;
|
|
height: auto;
|
|
|
|
&.ShareIcon {
|
|
width: $unit-4x;
|
|
}
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
font-weight: $bold;
|
|
}
|
|
}
|
|
}
|