@betha-plataforma/estrutura-componentes
Version:
Coleção de Web Components para compor a estrutura de uma aplicação front-end da Betha Sistemas.
106 lines (99 loc) • 2.29 kB
CSS
*,
*:after,
*:before {
padding: 0;
margin: 0;
box-sizing: border-box;
line-height: 1.5;
}
* {
font-family: var(--bth-app-font-family-primary);
}
a:focus {
outline: 1px dotted var(--bth-app-gray-dark-30);
}
::-webkit-scrollbar {
-webkit-appearance: none;
height: 6px;
width: 6px;
}
::-webkit-scrollbar-track {
background: var(--bth-app-gray-light-30);
}
::-webkit-scrollbar-corner {
background: var(--bth-app-gray-light-40);
}
::-webkit-scrollbar-thumb {
background-color: var(--bth-app-gray);
border-radius: 1px;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(255, 255, 255, 0.3);
}
.descricao-mobile {
text-decoration: none;
padding: 0 16px;
}
.text-right {
text-align: right;
}
.link {
text-decoration: none;
color: var(--bth-app-blue);
}
.link:hover {
text-decoration: underline;
color: var(--bth-app-blue-dark-10);
}
.painel-notificacoes {
margin: 16px 0px 0px 0px;
overflow-y: auto;
overflow-x: hidden;
height: calc(100vh - 200px);
}
.painel-notificacoes .loader {
display: flex;
justify-content: center;
align-items: center;
}
.painel-notificacoes .loader--full-page {
height: 90%;
}
.painel-notificacoes .loader--list-bottom {
height: 60px;
}
.painel-notificacoes .notificacoes-lista {
padding: 0px;
margin: 2px;
list-style-type: none;
}
.painel-notificacoes .empty-notificacoes {
display: flex;
flex-direction: column;
padding: 1em;
justify-content: center;
align-items: center;
height: 95%;
text-align: center;
}
.painel-notificacoes .empty-notificacoes__img {
background-image: url("https://cdn.betha.cloud/plataforma/design/kare/framework/0.1.6/assets/images/notification.svg");
background-repeat: no-repeat;
background-position-x: center;
background-size: 130px;
height: 135px;
width: 130px;
}
.painel-notificacoes .empty-notificacoes-inconsistency {
background-image: url("https://cdn.betha.cloud/plataforma/design/kare/framework/0.1.6/assets/images/empty-inconsistencia-notificacoes-alerta.svg");
background-repeat: no-repeat;
background-position-x: center;
background-size: 130px;
height: 135px;
width: 130px;
}
.painel-notificacoes .empty-notificacoes h4 {
font-size: 20px;
font-weight: var(--bth-app-font-weight-regular);
margin: 24px 0px;
}