| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- * {
- padding: 0;
- margin: 0;
- border: 0;
- box-sizing: border-box;
- }
- #app {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- color: #333;
- min-height: 100vh;
- }
- body {
- user-select: none;
- background-color: #F1F5FF;
- }
- @font-face {
- font-family: 'dotfont';
- /* Project id */
- src: url('../common/text-security-disc.woff') format('woff');
- }
- .cr-ellipsis {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .fade-enter-active,
- .fade-leave-active {
- transition: opacity 0.5s ease;
- }
- .fade-enter-from,
- .fade-leave-to {
- opacity: 0;
- }
|