[ ADD ] react configuration

This commit is contained in:
Kuroi488
2020-11-16 17:14:34 +01:00
parent 89c9cfe099
commit 5078a1a96e
71 changed files with 16891 additions and 0 deletions

View File

@ -0,0 +1 @@
// Add you general and shared styles here

4
react/src/scss/_rtl.scss Normal file
View File

@ -0,0 +1,4 @@
.rtl{
font-family: Arial, Helvetica, sans-serif;
text-align: right;
}

View File

@ -0,0 +1,2 @@
$primaryColor: rgb(50, 61, 165);
$secondaryColor : rgba(62, 62, 62, 1);

4
react/src/scss/base.scss Normal file
View File

@ -0,0 +1,4 @@
@import 'bootstrap/scss/bootstrap';
@import './variables';
@import './rtl';
@import './general';