Reduce icon dimensions

This commit is contained in:
Arkadiusz Wieczorek 2022-01-21 00:00:29 +01:00
parent 5f83cfc02b
commit 4e3550cf03
4 changed files with 16 additions and 9 deletions

View File

@ -10,6 +10,10 @@
user-select: none; user-select: none;
} }
body {
min-width: 24rem;
}
html { html {
font-size: 1rem; font-size: 1rem;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,

View File

@ -52,8 +52,7 @@
padding: 0.25rem 0rem; padding: 0.25rem 0rem;
display: flex; display: flex;
flex-wrap: nowrap; flex-wrap: nowrap;
line-height: 1rem; line-height: 1.25rem;
line-height: 1.5rem;
background: #fff; background: #fff;
width: 100%; width: 100%;

View File

@ -99,7 +99,7 @@ const Sidebar = () => {
> >
{/* {stolenDataView ? 'Options' : 'Data'} {/* {stolenDataView ? 'Options' : 'Data'}
*/} */}
<SettingsIcon /> <SettingsIcon width={20} height={20} />
<span>Ustawienia wtyczki</span> <span>Ustawienia wtyczki</span>
</button> </button>
{/* <button {/* <button
@ -123,7 +123,7 @@ const Sidebar = () => {
> >
{/* {stolenDataView ? 'Options' : 'Data'} {/* {stolenDataView ? 'Options' : 'Data'}
*/} */}
<TrashIcon /> <TrashIcon width={20} height={20} />
<span>Wyczyść ciasteczka</span> <span>Wyczyść ciasteczka</span>
</button> </button>
<button <button
@ -146,7 +146,7 @@ const Sidebar = () => {
); );
}} }}
> >
<MailIcon /> <MailIcon width={20} height={20} />
<span> <span>
Utwórz wiadomość dla administratora tej witryny Utwórz wiadomość dla administratora tej witryny
</span> </span>

View File

@ -41,6 +41,7 @@
tr { tr {
vertical-align: middle; vertical-align: middle;
line-height: 1rem;
&:hover { &:hover {
background-color: $icd-yellow; background-color: $icd-yellow;
@ -80,6 +81,7 @@
overflow: hidden; overflow: hidden;
word-break: break-all; word-break: break-all;
text-overflow: clip; text-overflow: clip;
padding-left: 0.25rem;
} }
.icons { .icons {
@ -87,25 +89,27 @@
padding: 0 0.25rem; padding: 0 0.25rem;
position: relative; position: relative;
top: 2px; top: 2px;
max-width: 10%;
min-width: 5%;
.cookie-data { .cookie-data {
path { path {
fill: #000; fill: $mid-grey;
} }
} }
.request-with-cookie { .request-with-cookie {
path { path {
fill: #000; fill: $mid-grey;
} }
} }
.show-history-part { .show-history-part {
path { path {
fill: #000; fill: $mid-grey;
} }
} }
.request-with-history-part { .request-with-history-part {
path { path {
fill: #000; fill: $mid-grey;
} }
} }
} }