consul/ui-v2/app/styles/base/reset/base-variables.scss
John Cowen b41cad6fdf
UI: CSS refactor (#4430) + Fullscreen Layout (#4435)
* Begin refactoring CSS into component folders. Moved most
components into layout/skin folders, left out a couple of ones I want
to think about more.
* Adjust grays based on recent Structure changes 
* Switch to fullscreen layout for lists and detail, left aligned forms (#4435)
* Specifically use the 'actions_close' label, not just the :last-child (actions-group)
* Replace some non-var-ed colours in vaults code skin, plus prefixing (black and white)
2018-08-29 12:11:58 +01:00

36 lines
538 B
SCSS

%reset-margin {
margin: 0;
}
%reset-box {
margin: 0;
padding: 0;
}
%reset-typo {
font-size: 100%;
font-weight: normal;
}
%reset-list {
list-style: none;
}
%reset-table {
border-collapse: collapse;
border-spacing: 0;
}
%reset-table th,
%reset-table td {
padding: 0;
text-align: left;
}
/* move to layout? */
%responsive-media {
height: auto;
max-width: 100%;
}
%user-select-none {
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}