mirror of
https://github.com/Superredstone/patrickcanal.it.git
synced 2026-09-20 09:41:14 +02:00
25 lines
470 B
SCSS
25 lines
470 B
SCSS
// icon widths
|
|
// -------------------------
|
|
@use 'variables' as v;
|
|
|
|
.#{v.$css-prefix}-width-auto {
|
|
--#{v.$css-prefix}-width: auto;
|
|
}
|
|
|
|
.#{v.$css-prefix}-fw,
|
|
.#{v.$css-prefix}-width-fixed {
|
|
--#{v.$css-prefix}-width: #{v.$fw-width};
|
|
}
|
|
|
|
.#{v.$css-prefix}-canvas-square {
|
|
padding-block: 0.125em;
|
|
margin-block-end: -.125em;
|
|
}
|
|
|
|
.#{v.$css-prefix}-canvas-roomy {
|
|
padding-block: 0.25em;
|
|
padding-inline: .125em;
|
|
margin-block-end: -.25em;
|
|
box-sizing: content-box;
|
|
}
|