Skip to content

Commit

Permalink
feat: minor cosmetic change to the disclaimer (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
swarna1101 authored Aug 26, 2024
1 parent 0829026 commit a6fc1f2
Showing 1 changed file with 25 additions and 6 deletions.
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;
}

0 comments on commit a6fc1f2

Please sign in to comment.