18 lines
273 B
CSS
18 lines
273 B
CSS
.container {
|
|
width: 100%;
|
|
padding: 16px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: #e7f5ee;
|
|
border-radius: 7px;
|
|
}
|
|
|
|
.text {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: #000;
|
|
margin: 0;
|
|
}
|