You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
619 B
38 lines
619 B
.home .box {
|
|
width: 100%;
|
|
margin-top: 20px;
|
|
border-radius: 10px;
|
|
padding: 20px;
|
|
box-sizing: border-box;
|
|
min-height: 280px;
|
|
}
|
|
.home .box .solid {
|
|
min-height: 200px;
|
|
width: 1px;
|
|
}
|
|
.home .box .img-box {
|
|
width: 60px;
|
|
height: 60px;
|
|
background-color: #44D600;
|
|
border-radius: 6px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.home .box .img-box img {
|
|
width: 30px;
|
|
height: 30px;
|
|
object-fit: cover;
|
|
}
|
|
.row {
|
|
display: flex;
|
|
}
|
|
.row-items {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.row-between {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|