refunjs
Version:
Modern React-based framework for building scalable web applications with enhanced developer experience
65 lines (54 loc) • 924 B
CSS
@import "./variables.css";
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
font-family: var(--font-family);
font-size: var(--font-size-base);
line-height: var(--line-height-normal);
color: var(--color-text-primary);
background-color: var(--color-background);
min-height: 100vh;
}
code,
pre {
font-family: var(--font-family-mono);
}
a {
color: var(--color-primary);
text-decoration: none;
transition: color var(--transition-fast);
}
a:hover {
color: var(--color-primary-hover);
}
button {
font-family: inherit;
cursor: pointer;
border: none;
background: none;
}
img,
svg {
display: block;
max-width: 100%;
}
input,
textarea,
select {
font-family: inherit;
font-size: inherit;
}
#root {
min-height: 100vh;
display: flex;
flex-direction: column;
}