// app global css in SCSS form @import './icons.scss'; @import './quasar.variables.scss'; a { text-decoration: none; } .link { color: $color-link; cursor: pointer; } .header-link { color: $color-link !important; cursor: pointer; border-bottom: solid $primary; border-width: 2px; width: 100%; .q-icon { float: right; } } .link:hover { text-decoration: underline; } // 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; } .bg-vn-dark { background-color: var(--vn-dark); } .color-vn-text { color: var(--vn-text); } .color-vn-white { color: $white; } .vn-card { background-color: var(--vn-gray); color: var(--vn-text); border-radius: 8px; } .vn-card-list { width: 100%; max-width: 60em; } .bg-vn-primary-row { background-color: var(--vn-dark); } .bg-vn-secondary-row { background-color: var(--vn-light-gray); } /* Estilo para el asterisco en campos requeridos */ .q-field.required .q-field__label:after { content: ' *'; } input[type='number'] { -moz-appearance: textfield; } input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { appearance: none; -webkit-appearance: none; -moz-appearance: none; }