Skip to content

Commit

Permalink
Saving Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Vithuran Sadagopan committed Nov 11, 2021
1 parent d0dfd58 commit 2bcffd7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
29 changes: 17 additions & 12 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
max-width: auto;
margin: 0 auto;
display: grid;
background-color: black;
}
h1 {
Expand All @@ -110,34 +111,38 @@
@media (min-width:961px) { /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ }
@media (min-width:1281px) { /* hi-res laptops and desktops */ }
.history-view{
grid-template-columns: auto;
height: auto;
row-gap: 1em;
}
.output-view {
text-align: left;
background-color: rgba(255, 255, 255, 0.719);
color: white;
padding: 0.4em;
}
.current-view {
display: grid;
grid-template-columns: auto;
background-color: aquamarine;
background-color: rgb(75, 75, 75);
height: auto;
font-size: 2em;
}
.history-view{
grid-template-columns: auto;
row-gap: 1em;
}
.input-view {
text-align: left;
background-color: rgba(255, 255, 255, 0.15);
color: auto;
padding: 0.4em;
}
.output-view {
text-align: left;
background-color: darkcyan;
color: white;
padding: 0.4em;
}
.number-pad {
display: grid;
grid-template-columns: auto auto auto auto auto;
grid-gap: 0.75em;
background-color: #2196f3;
background-color: rgba(255, 255, 255, 0.9);
padding: 0.75em;
border-radius: 0 0 1em 1em;
}
</style>
1 change: 1 addition & 0 deletions src/lib/NumPadKey.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
background-color: rgba(255, 255, 255, 0.8);
text-align: center;
font-size: 2em;
border-radius: 0.5em;
}
button {
width: 100%;
Expand Down

0 comments on commit 2bcffd7

Please sign in to comment.