Skip to content

Commit

Permalink
Minor aesthetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nashvail committed Oct 27, 2016
1 parent 6198486 commit ec07d67
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
./vscode
Binary file not shown.
Binary file not shown.
Binary file not shown.
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
],
"stopOnEntry": false,
"sourceMaps": true,
"outDirs": [
"${workspaceRoot}/out/**/*.js"
],
"preLaunchTask": "npm"
}
]
}
2 changes: 1 addition & 1 deletion public/css/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 11 additions & 2 deletions src/Styles/Components/_CompanyList.scss
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
.companyList {
background-color: $color-main;
border-radius: 2px;
border-radius: $border-radius-main;
border: 1px solid $color-main-border;
width: 750px;
margin: 20px auto 0px auto;
font-size: 4.8rem;
}

.companyList > div:first-child {
.companyList > .company:first-child {
& .companyInfo {
border-top: none;
border-top-left-radius: $border-radius-main;
border-top-right-radius: $border-radius-main;
}
}

.companyList > .company:last-child {
& .openings > .opening:last-child{
border-bottom-left-radius: $border-radius-main;
border-bottom-right-radius: $border-radius-main;
}
}
2 changes: 1 addition & 1 deletion src/Styles/Components/_SearchBar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
padding: 1rem;
padding-left: 4.5rem;
font-family: 'Roboto', 'sans-serif';
@include border-radius(2px);
border-radius: $border-radius-main;
border: 1px solid $color-main-border;
background-image: url('../images/icon_search.svg');
background-repeat: no-repeat;
Expand Down
5 changes: 3 additions & 2 deletions src/Styles/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
$color-main: #FAFAFB;
$color-main: #F6F6F6;
$color-button-primary: #007ee5;
$color-main-text: #515357;
$color-opening-base: #FFFFFF;
$color-main-border: #B9BCC6;
$color-main-border: #B9BCC6;
$border-radius-main: 3px;

0 comments on commit ec07d67

Please sign in to comment.