moved all scss main files into folders

This commit is contained in:
bill bittner 2018-08-13 12:48:31 -07:00
parent 8ea1b0b03c
commit 7eab821bc2
13 changed files with 16 additions and 16 deletions

View file

@ -1,16 +1,16 @@
@import '_variables'; @import '~variables/_variables';
@import '_reset'; @import '~reset/_reset';
@import '_font'; @import '~fontStyle/_font';
@import '_html'; @import '~html/_html';
@import '~body/_body'; @import '~body/_body';
@import '_react-app'; @import '~react-app/_react-app';
@import '_text'; @import '~text/_text';
@import '_link'; @import '~link/_link';
@import '_input'; @import '~input/_input';
@import '_select'; @import '~select/_select';
@import '_textarea'; @import '~textarea/_textarea';
@import '_video'; @import '~video/_video';
@import 'components/_asset-display'; @import 'components/_asset-display';
@import 'components/_asset-preview'; @import 'components/_asset-preview';
@ -42,6 +42,6 @@
@import 'containers/_publish-status'; @import 'containers/_publish-status';
@import 'containers/_publish-disabled-message'; @import 'containers/_publish-disabled-message';
@import '_media-queries'; @import '~media-queries/_media-queries';

View file

@ -1,18 +1,18 @@
@font-face { @font-face {
font-family: 'Lekton'; font-family: 'Lekton';
src: url('font/Lekton/Lekton-Regular.ttf'); src: url('../font/Lekton/Lekton-Regular.ttf');
} }
@font-face { @font-face {
font-family: 'Lekton'; font-family: 'Lekton';
src: url('font/Lekton/Lekton-Bold.ttf'); src: url('../font/Lekton/Lekton-Bold.ttf');
font-weight: bold; font-weight: bold;
font-style: normal; font-style: normal;
} }
@font-face { @font-face {
font-family: 'Lekton'; font-family: 'Lekton';
src: url('font/Lekton/Lekton-Italic.ttf'); src: url('../font/Lekton/Lekton-Italic.ttf');
font-weight: normal; font-weight: normal;
font-style: italic; font-style: italic;
} }

View file

@ -10,7 +10,7 @@ select {
.select--arrow { .select--arrow {
-moz-appearance:none; -moz-appearance:none;
-webkit-appearance: none; -webkit-appearance: none;
background: url('icon/downArrow.svg') no-repeat right; background: url('../icon/downArrow.svg') no-repeat right;
cursor: pointer; cursor: pointer;
padding-right: 1.5em; padding-right: 1.5em;
padding-left: $input-padding padding-left: $input-padding