Skip to content

Commit 247311d

Browse files
committed
added netlify.toml
1 parent df0135c commit 247311d

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

netlify.toml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[[redirects]]
2+
from = "/*"
3+
to = "/index.html"
4+
status = 200

src/components/Navbar/NavbarStyles.js

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ export const LogoContainer = styled.div`
1818
/* border: 3px solid red; */
1919
margin-left: 5rem;
2020
cursor: pointer;
21+
@media screen and (max-width: 850px) {
22+
margin-left: 2rem;
23+
}
2124
img {
2225
filter: grayscale(80%);
2326
width: 100%;

src/components/Preloader/Preloader.jsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const PreloaderWrapper = styled(motion.div)`
1616
flex-direction: column;
1717
}
1818
div {
19-
width: 33%;
19+
width: 33.33%;
2020
height: 100%;
2121
background-color: white;
2222
/* border: 1px solid black; */
@@ -25,13 +25,13 @@ const PreloaderWrapper = styled(motion.div)`
2525
align-items: center;
2626
@media screen and (max-width: 749px) {
2727
width: 100%;
28-
height: 33%;
28+
height: 33.33%;
2929
}
3030
&:last-child {
31-
width: 34%;
31+
width: 33.34%;
3232
@media screen and (max-width: 749px) {
3333
width: 100%;
34-
height: 34%;
34+
height: 33.34%;
3535
}
3636
}
3737
&:nth-child(2) {

0 commit comments

Comments
 (0)