Create synapse-admin using 'rekit create --sass synapse-admin'

Change-Id: I14a94754264c83faffb7fea5099d37c97e60b07a
This commit is contained in:
Manuel Stahl
2019-02-07 12:47:18 +01:00
parent 427e91d123
commit 00d6959927
93 changed files with 3034 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
@import './mixins';
// Here you put all global css rules.
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
+5
View File
@@ -0,0 +1,5 @@
// index is the entry for all styles.
@import './global';
@import '../features/home/style';
@import '../features/common/style';
@import '../features/examples/style';
View File