Files
old-svijetlastrana-front/sass/pages/_home.scss
2018-05-07 16:07:00 +02:00

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;
}
}
}