12345678910111213141516171819202122232425262728 |
- html,
- body,
- #app {
- height: 100%;
- margin: 0;
- padding: 0;
- // background: #ffff;
- background-color: #f2f2f2;
- }
- body {
- // padding-top: 1vh;
- background-color: #f2f2f2;
- }
- html.dark {
- background: #121212;
- }
- .border_bottom {
- border-bottom: 2px solid #666;
- border-top: 2px solid #666;
- }
- // 解决苹果手机点击input框放大的问题
- input {
- font-size: 16px !important;
- }
|