mobile toggle

This commit is contained in:
DavidWells 2018-06-20 17:41:41 -07:00
parent 28d647861a
commit 3086eb0469
4 changed files with 52 additions and 6 deletions

View file

@ -60,13 +60,32 @@
color: #adadad;
letter-spacing: 1px;
}
.mobile-toggle {
display: none;
}
.desktop-toggle {
margin-left: 10px;
}
@media (max-width: 768px) {
.mobile-toggle {
display: inline-flex;
}
.desktop-toggle {
display: none;
}
.todo-list {
padding: 15px;
padding-top: 10px;
width: auto;
}
.todo-list h2 {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
max-width: 95%;
}
.todo-list-title {
/* Disable Auto Zoom in Input “Text” tag - Safari on iPhone */
font-size: 16px;
@ -76,6 +95,7 @@
.todo-create-wrapper {
flex-direction: column;
align-items: flex-start;
margin-bottom: 15px;
}
.todo-create-input {
appearance: none;