wallet-connect-web-examples/dapps/vue-dapp-auth/assets/scss/_base.scss
Pavel Yankovski 7e850d66c4
feat(vue-dapp-auth): Add example dapp on Vue 3 (#76)
Co-authored-by: Ben Kremer <contact@bkrem.dev>
2022-11-14 18:13:55 +01:00

23 lines
323 B
SCSS

@layer base {
html {
font-size: 16px; // 1rem
@apply tw-font-main tw-leading-sm tw-bg-base tw-text-base;
}
::selection {
@apply tw-bg-accent-secondary tw-text-bg;
}
a {
@apply tw-cursor-pointer;
}
hr {
@apply tw-text-divider;
}
input,
button {
outline: none !important;
}
}