diff --git a/src/assets/sass/variables.sass b/src/assets/sass/variables.sass
index 582b362..14df095 100644
--- a/src/assets/sass/variables.sass
+++ b/src/assets/sass/variables.sass
@@ -26,4 +26,4 @@
--bg-event-blue-color: #3ba3ee
--light-grey-bg-color: #f8f9fa
--btn-green-color: rgba(60, 217, 75, 1)
- --btn-light-green-color: rgba(60, 217, 75, 0.2)
+ --btn-light-green-color: rgba(60, 217, 75, 0.2)
\ No newline at end of file
diff --git a/src/components/base/BaseInput.vue b/src/components/base/BaseInput.vue
index a353b87..3d21ca8 100644
--- a/src/components/base/BaseInput.vue
+++ b/src/components/base/BaseInput.vue
@@ -1,7 +1,7 @@
.input-wrapper.flex.gap-x-2.px-4.box-border(class="py-2.5" :style="{ minWidth: widthInput + 'px' }")
img.cursor-pointer( v-if="withIcon" :class="position" src="@/assets/icons/search-black.svg" alt="SearchTable")
- input.w-full.outline-0.text-base.not-italic(:value="value" :type="type" @input="$emit('update:value', $event.target.value)" :placeholder="placeholder")
+ input.w-full.outline-0.text-base.not-italic(:style="{ backgroundColor: backgroundInput, fontSize: fontSizeInput }" :value="value" :type="type" @input="$emit('update:value', $event.target.value)" :placeholder="placeholder")
@@ -75,8 +114,6 @@ export default {
.sidebar-wrapper
border-left: 2px solid var(--btn-blue-color-3)
.button-plus
- width: 40px
- height: 40px
max-height: 40px
background: var(--btn-blue-color)
color: var(--default-white)
@@ -97,10 +134,28 @@ export default {
height: 40px
max-height: 40px
.button-styled
- width: 24px
- height: 24px
max-height: 24px
background: var(--btn-blue-color-1)
color: var(--btn-blue-color)
- font-size: 10px
+.open-sidebar
+ .sidebar-content
+ align-items: flex-end
+ padding-left: 15px
+ .event-type
+ position: absolute
+ width: 8px
+ height: 16px
+ top: 8px
+ left: 8px
+.create-event
+ width: 200px
+ height: 40px
+ border-radius: 4px
+.events-wrapper
+ width: 200px
+.input-wrapper
+ border: none
+ background: var(--bg-event-box-color)
+ height: 32px
+ width: 169px
diff --git a/tailwind.config.js b/tailwind.config.js
index 10a01eb..b100f17 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -27,7 +27,9 @@ module.exports = {
"3px": "3px",
"6px": "6px",
"10px": "10px",
+ "10.5px": "10.5px",
"13px": "13px",
+ "15px": "15px",
"19px": "19px",
"45px": "45px",
"74px": "74px",