aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar piotrruss <mail@pruss.it> 2023-03-26 21:53:36 +0200
committerGravatar piotrruss <mail@pruss.it> 2023-03-26 21:53:36 +0200
commitf4e00553c4acf44de48af958afc8747128b55562 (patch)
treede420e429b76e77546079d2a0878ce2ed1958f1e
parentec11985ae944bc6acb63afacb96512606c1dd7c8 (diff)
downloadmy_apps-f4e00553c4acf44de48af958afc8747128b55562.tar.gz
my_apps-f4e00553c4acf44de48af958afc8747128b55562.tar.bz2
my_apps-f4e00553c4acf44de48af958afc8747128b55562.zip
make calculator app smaller
-rw-r--r--apps/Calculator/styles/_calculator.scss4
-rw-r--r--configs/appList.js2
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/Calculator/styles/_calculator.scss b/apps/Calculator/styles/_calculator.scss
index 987a0ea..925d363 100644
--- a/apps/Calculator/styles/_calculator.scss
+++ b/apps/Calculator/styles/_calculator.scss
@@ -24,7 +24,7 @@
}
> div:nth-child(2) {
- font-size: 2.5em;
+ font-size: 1.5em;
flex-grow: 1;
display: flex;
align-items: center;
@@ -48,7 +48,7 @@
align-items: center;
border: 1px solid var(--color-window-buttons);
transition: .3s background-color;
- font-size: 2em;
+ font-size: 1.5em;
}
&:nth-of-type(1) {
diff --git a/configs/appList.js b/configs/appList.js
index 7963648..3d6ab42 100644
--- a/configs/appList.js
+++ b/configs/appList.js
@@ -1,7 +1,7 @@
import { Calculator, Notes, Player, Settings, ChangePassword, Youtube } from 'apps'
const appList = {
- Calculator: { component: Calculator, icon: true, buttons: ['min', 'close'], height: '30em', width: '20em' },
+ Calculator: { component: Calculator, icon: true, buttons: ['min', 'close'], height: '21em', width: '14em' },
Notes: { component: Notes, icon: true, buttons: ['min', 'max', 'close'], height: '48em', width: '64em' },
Player: { component: Player, icon: true, buttons: ['min', 'max', 'close'], height: '48em', width: '64em' },
ChangePassword: { component: ChangePassword, icon: false, buttons: ['min', 'close'], height: '21em', width: '18em' },