Skip to content

Commit

Permalink
improvement linear-gradient and colors
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasferreiralimax committed Jun 14, 2024
1 parent df92d25 commit 47dbcc5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
5 changes: 3 additions & 2 deletions src/app/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ body {
content: "";
display: flex;
height: 20px;
background: #3ea3bf;
background: #087ea4;
background: linear-gradient(90deg, #087ea4 50%, #1c926f 100%);
box-shadow: 0 0 0 1px #fff, 0 0 20px rgba(0,0,0,.4);
}
}
Expand All @@ -31,7 +32,7 @@ code { font-family: 'Courier New', monospace; }
color: #2c3e50;
font-family: 'Avenir', Helvetica, Arial, sans-serif;
text-align: center;
min-height: 90vh;
min-height: calc(100vh - 40px);
display: flex;
flex-direction: column;
}
2 changes: 1 addition & 1 deletion src/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/components/base/AppFooter/style.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.app-footer {
padding: 3em 0;
margin-top: auto;
a {
align-items: center;
color: #000;
Expand Down
6 changes: 3 additions & 3 deletions src/components/base/AppNavigation/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@

&.active {
background: #fff;
border: 2px solid #3ea3bf;
color: #3ea3bf;
border: 2px solid #087ea4;
color: #087ea4;

svg {
fill: #3ea3bf;
fill: #087ea4;
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/views/Home/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ h3 {

.slide-title {
padding: 2rem 0;
color: #3ea3bf;
color: #087ea4;
font-size: 2em;
@media (max-width: 640px) {
.slide-title {
Expand All @@ -35,7 +35,7 @@ h3 {
}

svg {
fill: #3ea3bf;
fill: #087ea4;
}
}

Expand Down

0 comments on commit 47dbcc5

Please sign in to comment.