107 lines
1.7 KiB
SCSS
107 lines
1.7 KiB
SCSS
.Roadmap.PageContent {
|
|
padding-bottom: $unit-12x;
|
|
h3.priority {
|
|
font-weight: $medium;
|
|
font-size: $font-large;
|
|
margin-bottom: $unit-4x;
|
|
|
|
&.in_progress {
|
|
color: $yellow;
|
|
}
|
|
|
|
&.high {
|
|
color: $red;
|
|
}
|
|
|
|
&.mid {
|
|
color: $orange-10;
|
|
}
|
|
|
|
&.low {
|
|
color: $blue;
|
|
}
|
|
}
|
|
|
|
.notes {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit;
|
|
margin-bottom: $unit-2x;
|
|
|
|
p {
|
|
margin-bottom: $unit;
|
|
font-size: $font-medium;
|
|
}
|
|
|
|
.LinkItem {
|
|
$diameter: $unit-6x;
|
|
background: var(--dialog-bg);
|
|
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;
|
|
}
|
|
|
|
svg {
|
|
fill: var(--link-item-image-color);
|
|
width: $diameter;
|
|
height: auto;
|
|
|
|
&.ShareIcon {
|
|
width: $unit-4x;
|
|
}
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
font-weight: $bold;
|
|
max-width: 70%;
|
|
line-height: 1.3;
|
|
}
|
|
}
|
|
}
|
|
|
|
ul {
|
|
color: var(--text-primary);
|
|
list-style-type: none;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: $unit-3x;
|
|
|
|
li {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit;
|
|
margin-bottom: $unit-2x;
|
|
|
|
h4 {
|
|
font-size: $font-medium;
|
|
font-weight: $bold;
|
|
}
|
|
|
|
p {
|
|
font-size: $font-regular;
|
|
}
|
|
}
|
|
}
|
|
}
|