mirror of
https://github.com/status-im/consul.git
synced 2025-01-18 17:52:17 +00:00
6589cbbd0d
* ui: Add the most basic workspace root in /ui * We already have a LICENSE file in the repository root * Change directory path in build scripts ui-v2 -> ui * Make yarn install flags configurable from elsewhere * Minimal workspace root makefile * Call the new docker specific target * Update yarn in the docker build image * Reconfigure the netlify target and move to the higher makefile * Move ui-v2 -> ui/packages/consul-ui * Change repo root to refleect new folder structure * Temporarily don't hoist consul-api-double * Fixup CI configuration * Fixup lint errors * Fixup Netlify target
108 lines
1.4 KiB
SCSS
108 lines
1.4 KiB
SCSS
a {
|
|
text-decoration: none;
|
|
}
|
|
td,
|
|
th,
|
|
span,
|
|
strong {
|
|
color: inherit;
|
|
}
|
|
/* %typo-body */
|
|
body {
|
|
color: $gray-900;
|
|
}
|
|
/* TODO: Consider changing this to 'p a, dd a, td a' etc etc*/
|
|
a {
|
|
color: $color-action;
|
|
}
|
|
html {
|
|
background-color: $white;
|
|
}
|
|
hr {
|
|
background-color: $gray-500;
|
|
}
|
|
button {
|
|
background-color: $transparent;
|
|
}
|
|
html {
|
|
font-size: $typo-size-000;
|
|
}
|
|
/* %typo-body */
|
|
body {
|
|
line-height: 1.5;
|
|
}
|
|
body,
|
|
button,
|
|
input,
|
|
select,
|
|
textarea {
|
|
font-family: $typo-family-sans;
|
|
}
|
|
code,
|
|
pre {
|
|
font-family: $typo-family-mono;
|
|
}
|
|
strong {
|
|
font-style: inherit;
|
|
font-weight: $typo-weight-bold;
|
|
}
|
|
html {
|
|
text-rendering: optimizeLegibility;
|
|
text-size-adjust: 100%;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
code,
|
|
pre {
|
|
-moz-osx-font-smoothing: auto;
|
|
-webkit-font-smoothing: auto;
|
|
}
|
|
|
|
pre {
|
|
-webkit-overflow-scrolling: touch;
|
|
overflow-x: auto;
|
|
white-space: pre;
|
|
word-wrap: normal;
|
|
}
|
|
html {
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
}
|
|
html {
|
|
box-sizing: border-box;
|
|
}
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: inherit;
|
|
}
|
|
fieldset {
|
|
border: none;
|
|
width: 100%;
|
|
}
|
|
a,
|
|
input[type='checkbox'],
|
|
input[type='radio'] {
|
|
cursor: pointer;
|
|
}
|
|
hr {
|
|
border: none;
|
|
display: block;
|
|
}
|
|
input[type='checkbox'],
|
|
input[type='radio'] {
|
|
vertical-align: baseline;
|
|
}
|
|
td,
|
|
th {
|
|
text-align: left;
|
|
vertical-align: top;
|
|
}
|
|
html {
|
|
min-width: 300px;
|
|
}
|
|
hr {
|
|
height: 1px;
|
|
margin: 1.5rem 0;
|
|
}
|