first commit
This commit is contained in:
32
sass/pages/_home.scss
Executable file
32
sass/pages/_home.scss
Executable file
@@ -0,0 +1,32 @@
|
||||
.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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user