Skip to content

Commit

Permalink
refactor: updated icon and font assets
Browse files Browse the repository at this point in the history
  • Loading branch information
liyasthomas committed Nov 3, 2021
1 parent 18a72cb commit 07c4c7d
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
Binary file modified icons/icon-128x128.png
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 icons/icon-16x16.png
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 icons/icon-48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Inter-Bold.ttf
Binary file not shown.
Binary file added src/Inter-Regular.ttf
Binary file not shown.
Binary file removed src/Poppins-Bold.ttf
Binary file not shown.
Binary file removed src/Poppins-Regular.ttf
Binary file not shown.
17 changes: 9 additions & 8 deletions src/popup-style.css
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
@font-face {
font-family: "Poppins";
font-family: "Inter", sans-serif;
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("/Poppins-Regular.ttf") format("truetype");
src: url("/Inter-Regular.ttf") format("truetype");
}

@font-face {
font-family: "Poppins";
font-family: "Inter", sans-serif;
font-style: normal;
font-weight: 500;
font-display: swap;
src: url("/Poppins-Bold.ttf") format("truetype");
src: url("/Inter-Bold.ttf") format("truetype");
}

body {
background-color: #202124;
width: 30rem;
height: 35rem;
color: white;
font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-family: "Inter", sans-serif;
}

.err {
Expand All @@ -34,7 +34,8 @@ body {
padding: 0 0.4rem;
}

.origin-input:focus, .origin-input:hover {
.origin-input:focus,
.origin-input:hover {
box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
outline: none;
}
Expand All @@ -45,7 +46,7 @@ body {
color: white;
border: 0;
border-radius: 2px;
font-family: 'Poppins';
font-family: "Inter", sans-serif;
display: flex;
flex: 1;
}
Expand Down Expand Up @@ -83,7 +84,7 @@ body {
display: inline-flex;
align-items: center;
justify-content: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.origin-delete {
Expand Down

0 comments on commit 07c4c7d

Please sign in to comment.