Files
FixIt/assets/scss/pages/link/_index.scss
T
Cell 20c0997cc5 fix(assets): restructure SCSS pages directory and fix positioning issues
- Restructure SCSS pages directory and rename shared to content
- Ensure hr overflow visible for awesome-hr icon
- Restore position relative on .page for absolute children
2026-07-16 00:13:35 +08:00

23 lines
433 B
SCSS

// link guard intermediate page
@use "core/functions" as *;
@use "core/mixins" as *;
#content-link {
align-self: center;
.card {
width: MIN(600px, calc(100% - 2rem));
box-sizing: border-box;
margin: 0 auto;
@include link-guard-content;
@include media('xs') {
width: MIN(600px, 100%);
}
}
body:has(&) {
@include set-fi-var(global-background-color, fi-var(header-background-color));
}
}