This website works better with JavaScript.
Home
Explore
Help
Sign In
ajay
/
stringere-frontend
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
added common font size in global scss and imported it in app module.scss
master
Ajay S
3 years ago
parent
2fc6933cf5
commit
36ac89dafb
3 changed files
with
10 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-3
src/App.module.scss
+1
-1
src/App.tsx
+8
-0
src/common/styles/global.scss
+ 1
- 3
src/App.module.scss
View File
@@ -1,3 +1 @@
.App {
text-align: center;
}
@import './common/styles/global.scss';
+ 1
- 1
src/App.tsx
View File
@@ -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
View File
@@ -0,0 +1,8 @@
@import './colors.scss';
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-size: 62.5%;
}
Write
Preview
Loading…
Cancel
Save