34 lines
560 B
CSS
34 lines
560 B
CSS
/* filepath: website_sale_aplicoop/static/src/css/base/utilities.css */
|
|
|
|
/**
|
|
* Utility classes used throughout the project
|
|
*/
|
|
|
|
.sr-only {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border-width: 0;
|
|
}
|
|
|
|
.text-muted {
|
|
color: var(--text-secondary) !important;
|
|
}
|
|
|
|
.word-wrap-break {
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.text-xs {
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.hidden-product {
|
|
display: none !important;
|
|
}
|