Commit c80b4a61 authored by SpinShare's avatar SpinShare

removed redundant code

parent e4a9e3f9
...@@ -135,48 +135,44 @@ ...@@ -135,48 +135,44 @@
} }
& .actions { & .actions {
display: grid; display: grid;
grid-template-columns: auto auto auto auto 1fr; grid-template-columns: 1fr auto;
grid-gap: 15px; grid-gap: 15px;
}
& .actions {
display: grid;
grid-template-columns: 1fr auto;
align-items: center;
& .show-all {
height: 100%;
display: flex;
justify-content: center;
align-items: center; align-items: center;
padding: 0px 10px;
}
input { & .show-all {
width: 100%; height: 100%;
font-family: 'Open Sans', sans-serif; display: flex;
font-size: 14px; justify-content: center;
background: transparent; align-items: center;
color: #fff; padding: 0px 10px;
border-radius: 4px;
padding: 9px 20px;
background: rgba(255,255,255,0.2);
border: 0px;
transition: 0.2s ease-in-out all;
&:hover {
background: rgba(255,255,255,0.1);
color: #fff;
}
&:focus {
outline: 0;
border-color: rgba(255,255,255,0.6);
} }
&::placeholder {
color: rgba(255,255,255,0.6); input {
width: 100%;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
background: transparent;
color: #fff;
border-radius: 4px;
padding: 9px 20px;
background: rgba(255,255,255,0.2);
border: 0px;
transition: 0.2s ease-in-out all;
&:hover {
background: rgba(255,255,255,0.1);
color: #fff;
}
&:focus {
outline: 0;
border-color: rgba(255,255,255,0.6);
}
&::placeholder {
color: rgba(255,255,255,0.6);
}
} }
} }
} }
}
& .search-results { & .search-results {
display: grid; display: grid;
grid-template-rows: auto auto auto 1fr; grid-template-rows: auto auto auto 1fr;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment