@freshworks/crayons
Version:
Crayons Web Components library
65 lines (64 loc) • 1.68 kB
CSS
/* Need to check with designer */
/* Need to check with designer */
:host {
font-family: var(--fw-font-family, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
box-sizing: border-box;
}
/* stylelint-disable a11y/media-prefers-reduced-motion */
.modal-header-container {
padding: 32px 32px 0;
position: relative;
background: #fff;
border-radius: 4px 4px 0 0;
transition: all 0.1s linear;
display: flex;
justify-content: space-between;
flex: none;
}
.modal-header-container .modal-header {
width: 100%;
height: auto;
box-sizing: border-box;
display: flex;
font-size: 18px;
font-weight: 600;
line-height: 24px;
color: #12344d;
}
.modal-header-container .modal-header .modal-header-body {
width: 100%;
height: auto;
box-sizing: border-box;
display: flex;
flex-direction: column;
gap: 0px;
}
.modal-header-container .modal-header .modal-header-body .modal-title {
width: 100%;
height: auto;
box-sizing: border-box;
display: flex;
gap: 10px;
color: #12344d;
}
.modal-header-container .modal-header .modal-header-body .modal-title .modal-title-icon {
width: auto;
height: 24px;
box-sizing: border-box;
display: flex;
align-items: center;
}
.modal-header-container .modal-header .modal-header-body .modal-title .title-label {
font-size: 18px;
font-weight: 600;
line-height: 24px;
}
.modal-header-container .modal-header .modal-header-body .description {
font-size: 14px;
font-weight: 400;
color: #475867;
line-height: 20px;
padding: 6px 0px;
}