Deze website werkt beter met JavaScript.
Beginscherm
Verkennen
Help
Inloggen
ajay
/
stringere-frontend
Volgen
1
Ster
0
Vork
0
Code
Kwesties
0
Pull-aanvragen
0
Publicaties
0
Wiki
Activiteit
Bladeren bron
added common font size in global scss and imported it in app module.scss
master
Ajay S
3 jaren geleden
bovenliggende
2fc6933cf5
commit
36ac89dafb
3 gewijzigde bestanden
met
toevoegingen van 10
en
4 verwijderingen
Zij-aan-zij weergave
Diff opties
Statistieken weergeven
Download Patch-bestand
Download Diff-bestand
+1
-3
src/App.module.scss
+1
-1
src/App.tsx
+8
-0
src/common/styles/global.scss
+ 1
- 3
src/App.module.scss
Bestand weergeven
@@ -1,3 +1 @@
.App {
text-align: center;
}
@import './common/styles/global.scss';
+ 1
- 1
src/App.tsx
Bestand weergeven
@@ -3,7 +3,7 @@ import styles from './App.module.scss';
function App() {
return (
<div
className={styles.App}
>
<div>
</div>
);
+ 8
- 0
src/common/styles/global.scss
Bestand weergeven
@@ -0,0 +1,8 @@
@import './colors.scss';
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-size: 62.5%;
}
Schrijf
Voorbeeld
Laden…
Annuleren
Opslaan