Files
2024-09-27 02:06:13 +08:00

25 lines
362 B
CSS

/* 公共css */
.padding {
padding-left: 0.725rem;
padding-right: 0.75rem;
}
.flex {
display: flex;
}
.flex-align-items {
display: flex;
align-items: center;
}
.bottom-line::after {
content: "";
position: absolute;
width: 100%;
left: 0;
bottom: 0;
height: 1px;
background: #ededed;
transform: scaleY(0.5);
}