12345678910111213141516171819202122232425262728293031 |
- *{
- margin: 0;
- padding: 0;
- }
- #app{
- height: 100vh;
- background-color: #051933;
- }
- ::-webkit-scrollbar {
- height: 2px;
- width: 4px;
- }
- ::-webkit-scrollbar-corner {
- background-color: transparent;
- }
- ::-webkit-scrollbar-thumb {
- width: 5px !important;
- height: 5px !important;
- border-radius: 10px;
- -webkit-box-shadow: inset 0 0 2px #115BE6;
- background: #115BE6;
- }
- ::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 2px #03399F;
- border-radius: 10px;
- background: #03399F;
- }
- @font-face{
- font-family: 'YouSheBiaoTiHei';
- src: url('@/assets/font/YouSheBiaoTiHei.ttf');
- }
|