94 lines
1.4 KiB
SCSS
94 lines
1.4 KiB
SCSS
.type-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 900px;
|
|
}
|
|
|
|
.type-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
width: 100%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.type-col {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 50%;
|
|
margin: 12px;
|
|
}
|
|
|
|
.create-case-taginput {
|
|
display: flex;
|
|
height: 35px;
|
|
}
|
|
|
|
.case-tag-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.tag-container {
|
|
height: 30px;
|
|
margin-top: 8px;
|
|
margin-bottom: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.tag-box {
|
|
background-color: rgba(224, 224, 224, 0.421);
|
|
display: flex;
|
|
border-radius: 8px;
|
|
margin: 4px 4px;
|
|
padding: 6px;
|
|
}
|
|
|
|
.tag-ex-box {
|
|
display: flex;
|
|
}
|
|
|
|
.tag-ex {
|
|
cursor: pointer;
|
|
margin-top: -6px;
|
|
font-weight: 500;
|
|
font-size: 0.98rem;
|
|
height: 20px;
|
|
}
|
|
|
|
.casetag-name {
|
|
font-size: 0.94rem;
|
|
padding: 0px 8px;
|
|
}
|
|
|
|
.casetype-button-container {
|
|
margin-top: 20px;
|
|
margin-right: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
width: 100%;
|
|
}
|
|
|
|
.radio-wrapper {
|
|
padding-left: 8px;
|
|
margin-top: -3px;
|
|
border: 1px solid #eaeaea;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.casetype-error {
|
|
font-size: 0.84rem;
|
|
margin-top: 2px;
|
|
margin-left: 2px;
|
|
padding-left: 6px;
|
|
color: red;
|
|
}
|