64 lines
831 B
CSS
64 lines
831 B
CSS
|
|
pre {
|
|
background-color: #eceff1;
|
|
padding: 15px;
|
|
border-radius: 4px;
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
font-size: 0.9rem;
|
|
color: #333;
|
|
}
|
|
|
|
|
|
.dialog-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 40px;
|
|
}
|
|
|
|
.pxe-form {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.list-item-content {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
}
|
|
|
|
.form-field {
|
|
width: 100%;
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.text-content {
|
|
flex-grow: 1;
|
|
margin-right: 16px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.icon-container {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.right-icon {
|
|
margin-left: 8px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.action-container {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 1em;
|
|
padding: 1.5em;
|
|
}
|
|
|
|
.action-buttons {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|