1234567891011121314151617181920212223242526272829303132333435363738 |
- .log-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 1.5385vw 2.5641vw;
- border-bottom: 0.2564vw solid #f3f3f3;
- font-size: 3.5897vw;
- .item-col {
- .title{
- margin-bottom: 1.0256vw;
- }
- }
- .item-col-right {
- display: flex;
- align-items: center;
- .row {
- margin-right: 1.5385vw;
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- }
- }
- .desc,
- ion-icon {
- color: #8b8b8b;
- }
- .desc {
- display: flex;
- align-items: center;
- .tag {
- width: 1.5385vw;
- height: 1.5385vw;
- background-color: #42d96b;
- border-radius: 50%;
- margin-right: 1.5385vw;
- }
- }
- }
|