Skip to content

Commit e8fbebf

Browse files
authored
Merge pull request #9 from devklick/dev
Dev
2 parents 2ab560a + eccc035 commit e8fbebf

2 files changed

Lines changed: 11 additions & 9 deletions

File tree

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ change fairly often, sometimes for better, sometimes for worse.
1515
## Scope And Purpose
1616

1717
The purpose of this app, as with most of my apps, is for fun and practice.
18-
It doesn't really serve any useful purpose. It's fun to work on, hopefully it's
19-
interesting to others too, either to work on (feel free to get involved) or just
20-
play around with.
18+
It doesn't really serve any useful purpose. It's fun to work on, and hopefully
19+
you find it interesting in some way, either to work on (feel free to get involved)
20+
or just play around with.
2121

22-
There's no defined scope, really. It's something that will likely slowly be built
22+
There's no defined scope. It's something that will likely slowly be built
2323
up more and more over time. With that being said, there are at least a few things
2424
that are definitely out of scope:
2525

@@ -40,7 +40,7 @@ system, but it's enough for you to create files and folders as required.
4040
### Moveable/Resizable Applications
4141

4242
You can position your applications anywhere on the desktop, resizing them to fit
43-
your requirements. You can even maximize and minimize them when necessary.
43+
your requirements. You can also minimize and maximize files as required.
4444

4545
### File Browser Application
4646

@@ -63,7 +63,7 @@ save the file). The same goes for loading saved files.
6363

6464
### Settings Application
6565

66-
The settings application will be for controlling the various settings of the
66+
The settings application is for viewing and modifying various settings of the
6767
desktop environment. At present, this is limited to:
6868

6969
#### Appearance
@@ -72,8 +72,10 @@ You can control the appearance of your simulated desktop environment, changing
7272
things like:
7373

7474
- Background image
75-
- UI color
75+
- UI main color
76+
- UI accent color
7677
- Font color
78+
- Simple icon color
7779

7880
Hopefully the list of configurable appearance settings will continue to grow
7981
over time.

src/programs/Calculator/styles.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const StyledInputOutput = styled.div<{
2020
direction: "input" | "output";
2121
}>`
2222
box-shadow: 0px 0px 4px rgb(0, 0, 0, 0.5) inset;
23-
font-size: ${(props) => (props.direction === "input" ? 22 : 18)}px;
23+
font-size: ${(props) => (props.direction === "input" ? 20 : 16)}px;
2424
width: 100%;
2525
height: 100%;
2626
display: flex;
@@ -61,7 +61,7 @@ export const StyledButton = styled.button`
6161
align-items: center;
6262
background-color: inherit;
6363
color: inherit;
64-
border-width: 1px;
64+
border: none;
6565
6666
&:hover {
6767
backdrop-filter: brightness(150%);

0 commit comments

Comments
 (0)