// app global css in SCSS form @import './icons.scss'; a { text-decoration: none; } .link { color: $primary; cursor: pointer; } .link:hover { color: $orange-4; } // Removes chrome autofill background input:-webkit-autofill, select:-webkit-autofill { color: var(--vn-text); font-family: $typography-font-family; -webkit-text-fill-color: var(--vn-text); -webkit-background-clip: text !important; background-clip: text !important; } body.body--light { .q-header .q-toolbar { background-color: $white; color: #555; } --vn-text: #000000; --vn-gray: #f5f5f5; --vn-label: #5f5f5f; --vn-dark: white; --vn-light-gray: #e7e3e3; } body.body--dark { --vn-text: #ffffff; --vn-gray: #313131; --vn-label: #a8a8a8; --vn-dark: #292929; --vn-light-gray: #424242; } .bg-vn-dark { background-color: var(--vn-dark); } .color-vn-text { color: var(--vn-text); } .vn-card { background-color: var(--vn-gray); color: var(--vn-text); border-radius: 8px; } .vn-card-list { width: 100%; max-width: 60em; } /* Estilo para el asterisco en campos requeridos */ .q-field.required .q-field__label:after { content: ' *'; }