mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
20c0997cc5
- 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
23 lines
433 B
SCSS
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));
|
|
}
|
|
}
|