37 lines
704 B
CSS
37 lines
704 B
CSS
#custom-pwa-admin-root .custom-pwa-admin-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 14px;
|
|
max-width: 900px;
|
|
}
|
|
|
|
#custom-pwa-admin-root .custom-pwa-field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
|
|
#custom-pwa-admin-root .custom-pwa-field input[type="text"],
|
|
#custom-pwa-admin-root .custom-pwa-field textarea {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#custom-pwa-admin-root .custom-pwa-checkbox-row label {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
#custom-pwa-admin-root .custom-pwa-private-key-status {
|
|
margin: 6px 0 0;
|
|
}
|
|
|
|
#custom-pwa-admin-root .custom-pwa-admin-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|