Skip to content

Commit

Permalink
style(intg): reduce tabs of <style> lines
Browse files Browse the repository at this point in the history
  • Loading branch information
lemredd committed Jan 10, 2023
1 parent c7cf18e commit 2acf152
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions src/components/CalculatorContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -258,47 +258,47 @@ function revertToChosenHistory(historyItem: HistoryItem) {
</template>

<style lang="scss">
button:not(.no-border) {
@apply m-[1px] px-2 py-1;
@apply border border-neutral-800 rounded-md;
@apply text-xl text-neutral-800;
}
button:not(.no-border) {
@apply m-[1px] px-2 py-1;
@apply border border-neutral-800 rounded-md;
@apply text-xl text-neutral-800;
}
.common-buttons .row button {
@apply flex flex-1 justify-center items-center;
}
.common-buttons .row button {
@apply flex flex-1 justify-center items-center;
}
</style>

<style scoped lang="scss">
.calculator-container {
@apply p-1;
@apply flex flex-col justify-between;
min-height: 100vh;
}
.calculator-container {
@apply p-1;
@apply flex flex-col justify-between;
min-height: 100vh;
}
.screens {
position: relative;
.screens {
position: relative;
.evaluation-screen-container {
@apply flex justify-end;
}
.evaluation-screen-container {
@apply flex justify-end;
}
.entry-screen-container {
@apply flex justify-end;
.entry-screen-container {
@apply flex justify-end;
@apply mt-2 mb-4;
}
@apply mt-2 mb-4;
}
.entry-screen-container .screen {
@apply text-4xl;
}
.entry-screen-container .screen {
@apply text-4xl;
}
}
.common-buttons {
@apply flex flex-1 flex-col;
.common-buttons {
@apply flex flex-1 flex-col;
.row {
@apply flex flex-1;
}
.row {
@apply flex flex-1;
}
}
</style>

0 comments on commit 2acf152

Please sign in to comment.