styled.ts
504 字节
import styled from 'styled-components'
export const AppHeaderWrapper = styled.div`
height: 65px;
background-color: #05B8D2;
font-size: 14px;
box-sizing: border-box;
padding: 20px 32px;
.title{
color: #fff;
font-size: 22px;
}
.avatar{
border-radius: 50%;
width: 40px;
height: 40px;
margin-right: 16px;
}
.username{
font-size: 20px;
color: #fff;
margin-right: 16px;
font-weight: 700;
}
.loginout{
font-size: 18px;
color: #fff;
}
`