@qvant/qui-max
Version:
A Vue 3 Design system for Web.
52 lines (51 loc) • 905 B
CSS
.q-dialog-container {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
width: 100%;
height: 100%;
}
.q-dialog-container__wrapper {
width: 100%;
height: 100%;
overflow: auto;
background-color: var(--color-tertiary-gray-ultra-light);
}
.q-dialog-container__content {
width: 100%;
height: 100%;
}
.q-dialog-content {
position: relative;
display: flex;
flex-direction: column;
height: 100%;
padding-top: 36px;
}
.q-dialog-content__title {
margin-right: 104px;
margin-bottom: 24px;
margin-left: 32px;
font-size: 24px;
font-weight: 800;
line-height: 31px;
color: var(--color-primary-black);
word-break: break-word;
}
.q-dialog-content__close {
position: absolute;
top: 24px;
right: 32px;
z-index: 2;
}
.q-dialog-content__view {
display: flex;
}
.q-dialog-content__body {
flex: 1;
padding-right: 32px;
padding-left: 32px;
}