12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .infoColumn{
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- gap: 4px;
- min-height: 40px;
- }
- .nameRow{
- display: flex;
- align-items: center;
- gap: 4px;
- font-style: normal;
- }
- .nickName{
- font-size: 14px;
- font-style: normal;
- font-weight: 500;
- line-height: 20px;
- }
- .tipCnt{
- position: absolute;
- z-index: 1;
- top: 6px;
- right: 0px;
- font-size: 0px;
- height: 8px;
- width: 8px;
- border-radius: 8px;
- background: #FF4747;
- border: 1px solid white;
- }
- .certificationContainer{
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: rgba(#31BE59, .1);
- width: 20px;
- height: 16px;
- border-radius: 4px;
- // align-self: flex-start;
- }
- .subInfo{
- color: #414A64;
- font-size: 12px;
- font-style: normal;
- font-weight: 400;
- line-height: 16px;
- }
- .lastMsg {
- .subInfo();
- color: #A1A7BA;
- }
|