summaryrefslogtreecommitdiffstats
path: root/src/styles/objects/_placeholder-box.scss
blob: 9be3dc899097f6f19724d460a8ba5c194c23dbfd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
@use "pkg:iro-sass/bem";
@use "pkg:iro-sass/props";
@use "pkg:iro-design" as iro;

@mixin styles {
	@include bem.object("placeholder-box") {
		padding: props.get(iro.$core--size--250) props.get(iro.$core--size--300);
		border: props.get(iro.$core--border-width--thin) dashed
			props.get(iro.$core--theme, --border, --mute);
		border-radius: props.get(iro.$core--rounding);
	}
}