Basic structure of payment screen

This commit is contained in:
2020-12-26 20:18:19 +01:00
parent bbff4088cc
commit 04d2115f96
11 changed files with 219 additions and 63 deletions

View File

@@ -0,0 +1,32 @@
.header {
display: grid;
grid-template-columns: 1fr auto;
margin: 0;
padding: 0;
background-color: #fff;
padding: 1rem;
padding-left: 2rem;
padding-right: 2rem;
border-radius: 22px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.header h2 {
font-weight: bolder;
width: fit-content;
grid-column: 1;
}
.header a {
color: red;
border: 1px solid red;
border-block-end-width: 1px;
border-radius: 5px;
padding: 0.8rem;
margin: auto 0;
height: fit-content;
float: right;
cursor: pointer;
grid-column: 2;
}