123456789101112131415161718192021222324252627282930313233 |
- .drawerDiv {
- // width: 380px;
- // height: 340px;
- padding: 0 24px;
- background-color: #ffffff;
- border-radius: 10px;
- .title {
- display: flex;
- align-items: center;
- height: 100px;
- font-size: 22px;
- }
- .menuList {
- padding-bottom: 60px;
- .menuItem {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- box-sizing: border-box;
- height: 120px;
- color: #656872;
- font-size: 14px;
- border: 1px solid #eceff4;
- border-radius: 20px;
- cursor: pointer;
- .name {
- padding-top: 14px;
- }
- }
- }
- }
|