@heycar-uikit/core
Version:
The React UI library from HeyCar
130 lines (117 loc) • 2.19 kB
CSS
:root {
/* heycar mint color */
/* mica blue color */
/* sunbeam blue color */
/* mustang yellow color */
/* old ferrari red color */
/* -- fantasy name of "green" color to be defined -- */
/* -- fantasy name of "whatsapp" color to be defined -- */
/* -- fantasy name of "red" color to be defined -- */
/* tarmac grey color */
--color-tarmac-grey-500: #838383;
--color-tarmac-grey-600: #595959;
--color-tarmac-grey-700: #303030;
/* brand colors */
}
/* Depricated. Do Not Use */
:root {
/* Font families */
/* Font weights */
--font-weight-medium: 500;
}
/*
Heading
*/
/*
Sub-Heading
*/
/*
Body
*/
/*
Caption
*/
/*
Overline
*/
/*
Button
*/
/*
Button Old - DO NOT USE
*/
/* If this is ever changed please update breakpoints.json as well */
/* Mobile */
/* Tablet */
/* Desktop */
/* Default theme (light) */
:root {
/*
Colors
*/
--color-neutral-500: var(--color-tarmac-grey-500);
--color-neutral-600: var(--color-tarmac-grey-600);
--color-neutral-700: var(--color-tarmac-grey-700);
/*
Sizes
*/
}
body {
color: var(--color-neutral-700);
}
.breadcrumbWrapper {
display: flex;
flex-direction: row;
color: var(--color-tarmac-grey-700);
list-style: none;
font-weight: var(--font-weight-medium);
padding: 0;
margin: 0;
font-size: 12px;
}
@media (max-width: 767px) {
.breadcrumbWrapper {
flex-wrap: wrap;
}
}
.breadcrumbsList {
display: flex;
}
.breadcrumbsList:after,
.threeDots:after {
content: '|';
padding: 0 4px;
}
.breadcrumbsList:last-child:after {
content: '';
}
.breadcrumbsList:last-child {
color: var(--color-neutral-500);
}
.breadcrumbLink {
text-decoration: none;
color: var(--color-tarmac-grey-700);
display: inline-block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 20ch;
}
.breadcrumbLink:hover {
color: var(--color-neutral-600);
text-decoration: underline;
}
.breadcrumbLink:focus,
.breadcrumbLink:active,
.breadcrumbLink:visited {
text-decoration: underline;
}
.currentBreadcrumb {
color: var(--color-neutral-500);
}
.threeDots {
cursor: pointer;
}
.disabled {
color: var(--color-neutral-500);
}