Skip to content

Commit

Permalink
fixed input styles
Browse files Browse the repository at this point in the history
  • Loading branch information
e11sy committed Jul 8, 2024
1 parent a9218af commit 96363c3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 8 deletions.
19 changes: 15 additions & 4 deletions components/contact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</p>
<div class="bottom-container">
<div class="frame">
<input class="input-style" type="text" placeholder="[email protected]" />
<input :class="['input-style', inputActive && 'input-style-active']" type="text" placeholder="[email protected]" />
</div>
<button class="div-wrapper">
<div class="text-wrapper-3">Получить информацию</div>
Expand Down Expand Up @@ -116,19 +116,19 @@ export default Vue.extend({
display: flex;
margin-right: 10px;
gap: 10px;
flex: 1; /* Растягивает элемент до максимальной ширины */
flex-grow: 1; /* Растягивает элемент до максимальной ширины */
}
.div-wrapper {
cursor: pointer;
align-items: center;
border-width: 0px;
width: max-content;
background-color: #0d75d4; /* Цвет фона для div-wrapper */
border-radius: 8px;
display: inline-flex;
gap: 10px;
padding: 10px 12px;
flex: 1; /* Растягивает элемент до максимальной ширины */
box-shadow: none;
&:hover {
Expand All @@ -138,12 +138,23 @@ export default Vue.extend({
.input-style {
background-color: #242832; /* Цвет фона для input */
color: #ffffff4c; /* Цвет текста для input */
color: #DBE6FF; /* Цвет текста для input */
font-weight: 400;
width: 100%;
border: none;
border-radius: 8px;
padding: 10px 16px;
font-size: 16px;
flex: 1; /* Занимает все доступное пространство внутри frame */
&-active {
background-color: #323B4C;
&::placeholder {
color: #DBE6FF;
opacity: 1;
}
}
}
.text-wrapper-3 {
Expand Down
4 changes: 2 additions & 2 deletions components/site-footer-ru.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<div class="footer__inner">
<div class="footer__inner-text-1">Hawk</div>
<div class="footer__inner-text-2">© 2018—2024</div>
<div>О проекте</div>
<div>Документация</div>
<a href="https://docs.hawk.so/hawk">О проекте</a>
<a href="https://docs.hawk.so/hawk">Документация</a>
</div>
</div>
</template>
Expand Down
4 changes: 2 additions & 2 deletions pages/ru.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<div class="content-blocks">
<gridInfo/>
<div class="contact-container">
<Contact title="Подключайтесь"
<Contact inputActive title="Подключайтесь"
titleSize="medium"/>
</div>
</div>
Expand Down Expand Up @@ -336,7 +336,7 @@ export default Vue.extend({
&-head {
width: 830px;
margin: 170px auto 50px;
margin: 120px auto 50px;
padding: 0 var(--layout-paddings-horisontal);
display: flex;
Expand Down

0 comments on commit 96363c3

Please sign in to comment.