Text box for mobile

This commit is contained in:
z0ccc 2021-07-23 00:28:46 -04:00
parent fbab10d3f5
commit f323c5e9b1

View file

@ -176,7 +176,6 @@ input[type='text'] {
border: 1px solid var(--grey);
border-radius: 6px;
padding: 6px;
margin: 0 6px 0 0;
width: 200px;
outline: none;
}
@ -188,6 +187,7 @@ input[type='text'] {
background-color: transparent;
cursor: pointer;
color: var(--text);
margin: 0 0 0 6px;
}
#saveButton:hover {
@ -236,4 +236,8 @@ input[type='text'] {
.boxWrap {
padding: 8px;
}
input[type='text'] {
width: calc(100% - 65px)
}
}