mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 18:38:12 +01:00
16 lines
327 B
SCSS
16 lines
327 B
SCSS
@use '../breakpoints';
|
|
@use '../visual-design/theme';
|
|
|
|
input {
|
|
display: block;
|
|
margin: 0 var(--gutter);
|
|
border: var(--border-small) solid theme.$sl-color--iron;
|
|
padding: var(--gutter-quarter) var(--gutter);
|
|
width: 100%;
|
|
|
|
@include breakpoints.sl-breakpoint--large {
|
|
top: var(--gutter-half);
|
|
margin: 0;
|
|
}
|
|
}
|