Add a new to-do list ?
diff --git a/resources/sass/components/_btn.scss b/resources/sass/components/_btn.scss
index e293ae6..9aaab6b 100644
--- a/resources/sass/components/_btn.scss
+++ b/resources/sass/components/_btn.scss
@@ -1,7 +1,7 @@
// Button
.btn {
- @apply border border-transparent bg-gray-600 text-white font-semibold py-2 px-4 shadow-sm rounded cursor-pointer;
+ @apply border border-transparent inline-block bg-gray-600 text-white font-semibold whitespace-no-wrap py-2 px-4 shadow-sm rounded cursor-pointer;
&:hover {
@apply text-white bg-gray-800 transition-all duration-300;
@@ -12,7 +12,7 @@
}
&.svg {
- @apply px-2;
+ @apply px-2 inline;
svg {
@apply mr-0;
diff --git a/resources/sass/pages/memos.scss b/resources/sass/pages/memos.scss
index 539d21b..c13edc5 100644
--- a/resources/sass/pages/memos.scss
+++ b/resources/sass/pages/memos.scss
@@ -1,89 +1,3 @@
-/*
-.memo {
-
- &-list {
-
- h1 {
- font-size: 2.2rem;
- }
-
- a {
- text-decoration: none;
- }
-
- &:nth-child(even) {
- background-color: $light;
- }
-
- &:hover {
- background-color: $mediumLight;
-
- .memo-date {
- opacity: 1;
- }
- }
- }
-
- &-date {
- opacity: 0.6;
- }
-
- &-change {
- text-align: right;
- background: $greyLight;
- padding: 0.5rem 1rem;
- }
-
- &-title {
- color: $white;
- text-shadow: 1px 1px 2px $dark;
- background-image: linear-gradient(transparent, rgba(0,0,0,0.7));
- }
-
- &-cover {
- height: calc(100% - 5px);
- top: 0;
- width: 100%;
- }
-
-}
-
-.memo-edit {
-
- .memo-text-area textarea {
- height: 50vh;
- }
-
-}
-
-.memo-style {
- p {
- margin: 0.25rem 0 0.5rem;
- }
-
- code,
- pre {
- background-color: $greyLight;
- }
-
- pre {
- padding: 0.5rem;
- }
-
- a {
- color: $mediumDark;
-
- &:hover {
- text-decoration: underline;
- }
- }
-
- img {
- width: 100%;
- }
-}
-
-*/
.memo-style {
@@ -135,4 +49,8 @@
ol {
@apply list-decimal ml-8;
}
+
+ input[type="checkbox"] {
+ width: 2rem;
+ }
}