Adding top border-radius for main sections.

This commit is contained in:
codevictory
2021-05-09 21:03:29 +03:00
parent 23005fd9cc
commit 1380331f20
2 changed files with 7 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ section.logo {
width: 80%;
max-width: 1000px;
background-color: #d5caf2;
border-radius: 3px;
border-radius: 3px 3px 0px 0px;
padding-top: 3px;
img {

View File

@@ -1,4 +1,4 @@
section.text {
section.main {
display: flex;
flex-direction: column;
align-items: center;
@@ -11,6 +11,11 @@ section.text {
padding: 0px 20px;
max-width: 56%;
}
border-radius: 3px 3px 0px 0px;
}
section.logo ~ section.main {
border-radius: 0px;
}
.email-link {