1
0
mirror of https://github.com/mgerb/ps-launcher synced 2026-01-09 01:52:57 +00:00
Files
ps-launcher/app/components/Content/Content.scss

37 lines
584 B
SCSS

@import '../../scss/variables';
.content {
flex: 1;
.path-container {
display: flex;
}
.content-button {
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
background: $blue;
transition: background 0.2s;
outline: none;
padding: 0 15px;
&:hover {
background: darken($blue, 5%);
}
}
.content-input {
flex: 1;
background: darken($dark-blue, 3%);
border: none;
color: $blue--lighter;
padding: 5px;
&::-webkit-input-placeholder {
color: $dark-blue--2;
}
}
}