Darken link color, no feature borders

This commit is contained in:
Michał Rudowicz 2025-02-27 18:47:00 +01:00 committed by Michał Rudowicz
parent 0d8bdaa320
commit 67152a9e9f
2 changed files with 6 additions and 4 deletions
_sass/components
assets/css

View File

@ -1,7 +1,5 @@
.feature {
height: 100%;
border: 1px solid $white-offset;
border-radius: 3px;
padding: 20px;
background-color: #ffffff;
display: flex;

View File

@ -3,8 +3,8 @@
// Colors
$primary: #FDB515;
$primary-dark: #a01b16;
$secondary: #f88379;
$primary-dark: darken($primary, 10%);
$secondary: darken($primary, 20%);
$black: #2f2f41;
$white: #ffffff;
$white-offset: #fff6f8;
@ -119,3 +119,7 @@ body {
code {
color: #000;
}
a {
color: #dd9902;
}