moved all scss main files into folders
This commit is contained in:
parent
8ea1b0b03c
commit
7eab821bc2
13 changed files with 16 additions and 16 deletions
|
@ -1,16 +1,16 @@
|
|||
@import '_variables';
|
||||
@import '_reset';
|
||||
@import '_font';
|
||||
@import '_html';
|
||||
@import '~variables/_variables';
|
||||
@import '~reset/_reset';
|
||||
@import '~fontStyle/_font';
|
||||
@import '~html/_html';
|
||||
@import '~body/_body';
|
||||
@import '_react-app';
|
||||
@import '_text';
|
||||
@import '~react-app/_react-app';
|
||||
@import '~text/_text';
|
||||
|
||||
@import '_link';
|
||||
@import '_input';
|
||||
@import '_select';
|
||||
@import '_textarea';
|
||||
@import '_video';
|
||||
@import '~link/_link';
|
||||
@import '~input/_input';
|
||||
@import '~select/_select';
|
||||
@import '~textarea/_textarea';
|
||||
@import '~video/_video';
|
||||
|
||||
@import 'components/_asset-display';
|
||||
@import 'components/_asset-preview';
|
||||
|
@ -42,6 +42,6 @@
|
|||
@import 'containers/_publish-status';
|
||||
@import 'containers/_publish-disabled-message';
|
||||
|
||||
@import '_media-queries';
|
||||
@import '~media-queries/_media-queries';
|
||||
|
||||
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
@font-face {
|
||||
font-family: 'Lekton';
|
||||
src: url('font/Lekton/Lekton-Regular.ttf');
|
||||
src: url('../font/Lekton/Lekton-Regular.ttf');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Lekton';
|
||||
src: url('font/Lekton/Lekton-Bold.ttf');
|
||||
src: url('../font/Lekton/Lekton-Bold.ttf');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Lekton';
|
||||
src: url('font/Lekton/Lekton-Italic.ttf');
|
||||
src: url('../font/Lekton/Lekton-Italic.ttf');
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
|
@ -10,7 +10,7 @@ select {
|
|||
.select--arrow {
|
||||
-moz-appearance:none;
|
||||
-webkit-appearance: none;
|
||||
background: url('icon/downArrow.svg') no-repeat right;
|
||||
background: url('../icon/downArrow.svg') no-repeat right;
|
||||
cursor: pointer;
|
||||
padding-right: 1.5em;
|
||||
padding-left: $input-padding
|
Loading…
Reference in a new issue