File size: 446 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
.ssh-keys {
max-width: calc(100vw - 32px);
}
.ssh-keys__form.form-fieldset {
margin-top: 16px;
margin-bottom: 0;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 16px;
}
.ssh-keys__cards-container {
display: block;
> .card:not(:last-child) {
margin-bottom: 12px;
}
code {
white-space: pre-wrap;
word-wrap: break-word;
word-break: break-word;
}
}
.ssh-keys__select {
width: 100%;
max-width: 350px;
}
|