Skip to content

Commit

Permalink
feat(ui): add initial styles to buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
lemredd committed Dec 22, 2022
1 parent d102736 commit d6918d0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/components/CalculatorContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,13 @@ function evaluateExpression(valueToAppend: PossibleButtonValues) {
<EvaluationButton value="=" @append-to-screen="evaluateExpression" />
</template>

<style lang="scss">
button {
@apply m-[1px] px-2 py-1;
@apply bg-slate-200 rounded-sm;
@apply text-xl;
}
</style>

<style scoped lang="scss">
</style>

0 comments on commit d6918d0

Please sign in to comment.