### New content * Adds Onmyoji * Adds Dark Rapture Zero * Adds Exo Aristarchus ### Bug fixes * Fixed a bug that prevented filtering job skills by category * Fixed a bug that prevented infinite scroll in search modals
72 lines
1.2 KiB
SCSS
72 lines
1.2 KiB
SCSS
.content.version {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit-2x;
|
|
|
|
.header {
|
|
align-items: baseline;
|
|
display: flex;
|
|
gap: $unit-half;
|
|
margin-bottom: $unit-2x;
|
|
|
|
h3 {
|
|
color: var(--accent-yellow);
|
|
font-weight: $medium;
|
|
font-size: $font-large;
|
|
}
|
|
|
|
time {
|
|
color: var(--text-secondary);
|
|
font-size: $font-small;
|
|
font-weight: $medium;
|
|
}
|
|
}
|
|
|
|
.contents {
|
|
margin-bottom: $unit-3x;
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: $unit-4x;
|
|
|
|
.characters,
|
|
.weapons,
|
|
.summons,
|
|
.raids,
|
|
display: grid;
|
|
grid-template-rows: auto 1fr;
|
|
gap: $unit;
|
|
|
|
& > h4 {
|
|
font-weight: $medium;
|
|
font-size: $font-regular;
|
|
}
|
|
|
|
.items {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
|
|
gap: $unit-4x;
|
|
}
|
|
}
|
|
}
|
|
|
|
.notes {
|
|
h4 {
|
|
font-weight: $medium;
|
|
font-size: $font-regular;
|
|
margin-bottom: $unit-2x;
|
|
}
|
|
|
|
.list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
color: var(--text-primary);
|
|
list-style-type: disc;
|
|
list-style-position: inside;
|
|
gap: $unit-half;
|
|
|
|
li {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
}
|
|
}
|