Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resize sidebar icons #1217

Merged
merged 1 commit into from
Jul 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion arduino-ide-extension/arduino-icons.json

Large diffs are not rendered by default.

11 changes: 8 additions & 3 deletions arduino-ide-extension/src/browser/style/fonts.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
@font-face {
font-family: 'Open Sans';
src: url('fonts/OpenSans-Bold-webfont.woff') format('woff');
}

@font-face {
font-family: 'FontAwesome';
src:
url('fonts/FontAwesome.ttf?nk42gd') format('truetype'),
url('fonts/FontAwesome.woff?nk42gd') format('woff'),
url('fonts/FontAwesome.svg?nk42gd#FontAwesome') format('svg');
url('fonts/FontAwesome.ttf?2jhpmq') format('truetype'),
url('fonts/FontAwesome.woff?2jhpmq') format('woff'),
url('fonts/FontAwesome.svg?2jhpmq#FontAwesome') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
Expand Down
10 changes: 5 additions & 5 deletions arduino-ide-extension/src/browser/style/fonts/FontAwesome.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified arduino-ide-extension/src/browser/style/fonts/FontAwesome.ttf
Binary file not shown.
Binary file modified arduino-ide-extension/src/browser/style/fonts/FontAwesome.woff
Binary file not shown.
4 changes: 4 additions & 0 deletions arduino-ide-extension/src/browser/style/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,10 @@
align-items: center;
color: var(--theia-titleBar-activeBackground);
}
.p-TabBar.theia-app-sides .p-TabBar-tabIcon.fa-arduino-folder,
.p-TabBar.theia-app-sides .p-TabBar-tabIcon.fa-arduino-boards {
font-size: 21px;
}

.monaco-editor .margin {
border-right: 2px solid var(--theia-sideBar-background);
Expand Down