LSformElement :: ssh_key: make CSS responsive

This commit is contained in:
Benjamin Renard 2020-06-04 17:59:38 +02:00
parent 5708630abb
commit f16dd52aaa

View file

@ -20,3 +20,15 @@
textarea.LSformElement_ssh_key {
height: 10em;
}
@media (max-width: 1024px) {
.LSformElement_ssh_key_value {
width: 40vw;
}
}
@media (max-width: 400px) {
.LSformElement_ssh_key_value {
width: calc(100% - 1em);
}
}