1
0
mirror of https://github.com/mgerb/ps-launcher synced 2026-03-06 06:45:25 +00:00

coming along well - electron is pretty nice

This commit is contained in:
2017-10-17 23:01:08 -05:00
parent 3f49700225
commit c4e028d102
29 changed files with 424 additions and 199 deletions

View File

@@ -0,0 +1,36 @@
@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;
}
}
}