Skip to content

Commit

Permalink
Modernize CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronDewes committed Jul 26, 2022
1 parent b598a1c commit 47ff32f
Show file tree
Hide file tree
Showing 8 changed files with 3,193 additions and 3,318 deletions.
6 changes: 4 additions & 2 deletions app/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ body {

.checkbox > label::before {
/* @apply bg-grey-10; */
@apply border;
border-width: 1px;

@apply rounded-sm;

content: '';
Expand Down Expand Up @@ -313,7 +314,8 @@ select {

@screen md {
.main > section {
@apply border;
border-width: 1px;

@apply border-grey-80;
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/ui/account.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Account extends Component {
/>
<ul
id="accountMenu"
class="invisible absolute top-0 right-0 mt-10 pt-2 pb-2 bg-white shadow-md whitespace-no-wrap outline-none z-50 dark:bg-grey-80"
class="invisible absolute top-0 right-0 mt-10 pt-2 pb-2 bg-white shadow-md whitespace-nowrap outline-none z-50 dark:bg-grey-80"
onblur="${e => this.hideMenu(e)}"
>
<li class="p-2 text-grey-60 dark:text-grey-50">${user.email}</li>
Expand Down
2 changes: 1 addition & 1 deletion app/ui/downloadPassword.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = function(state, emit) {
${state.translate('downloadDescription')}
</p>
<form
class="flex flex-row flex-no-wrap w-full md:w-4/5"
class="flex flex-row flex-nowrap w-full md:w-4/5"
onsubmit="${checkPassword}"
data-no-csrf
>
Expand Down
Loading

0 comments on commit 47ff32f

Please sign in to comment.