-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: minor cosmetic change to the disclaimer (#240)
- Loading branch information
1 parent
0829026
commit a6fc1f2
Showing
1 changed file
with
25 additions
and
6 deletions.
There are no files selected for viewing
31 changes: 25 additions & 6 deletions
31
src/widgets/07-ecosystem-screens/ui/05-disclaimer/disclaimer.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,40 @@ | ||
.disclaimer { | ||
font: 600 14px/1.2 $kFontPublicSans; | ||
font: 600 14px/1.8 $kFontPublicSans; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 10px 0; | ||
background-color: transparent; | ||
} | ||
|
||
.wrapper { | ||
margin: 20px 0; | ||
padding: 15px; | ||
background-color: #f9f9f9; | ||
border-left: 5px solid #f44336; | ||
max-width: 1100px; | ||
width: 100%; | ||
margin: 15px auto; | ||
padding: 20px 35px; | ||
background-color: #ffffff; | ||
border-left: 8px solid #f44336; | ||
border-radius: 6px; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); | ||
transition: transform 0.3s ease, box-shadow 0.3s ease; | ||
} | ||
|
||
.wrapper:hover { | ||
transform: translateY(-3px); | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12); | ||
} | ||
|
||
.content { | ||
margin: 0; | ||
font-size: 14px; | ||
font-size: 15px; | ||
line-height: 1.8; | ||
color: #333; | ||
text-align: justify; | ||
letter-spacing: 0.5px; | ||
} | ||
|
||
.link { | ||
color: #0073e6; | ||
text-decoration: underline; | ||
font-weight: 700; | ||
} |