33 lines
437 B
SCSS
Executable File
33 lines
437 B
SCSS
Executable File
.todo-item {
|
|
border-bottom: 1px solid #eee;
|
|
|
|
button {
|
|
display: none;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
&:hover {
|
|
background: rgb(254, 254, 244);
|
|
|
|
button {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@media (max-width: $screen-xs-max) {
|
|
.todo-item {
|
|
.text-right {
|
|
display: none;
|
|
}
|
|
}
|
|
.todo-item:hover {
|
|
.text-right {
|
|
display: block;
|
|
text-align: center;
|
|
margin-bottom: 12.5px;
|
|
}
|
|
}
|
|
}
|