Skip to content

Commit

Permalink
menu local version removed
Browse files Browse the repository at this point in the history
  • Loading branch information
e11sy committed Jul 13, 2024
1 parent a2e8a58 commit fc938f2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
15 changes: 12 additions & 3 deletions components/contact.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<template>
<div class="box">
<div class="contact">
<div :class="[`div-${$props.titleSize}`, `div`]">{{ $props.title }}</div>
<p class="team-hawk-so-t-me">
<div :class="[`div-${$props.titleSize}`, `div`, inputActive && 'div__active']">{{ $props.title }}</div>
<p :class="['team-hawk-so-t-me', inputActive && 'team-hawk-so-t-me__active']">
Чтобы начать сотрудничество или получить больше информации, напишите нам на
<a href="mailto:[email protected]"> [email protected]</a>
или в телеграм
Expand Down Expand Up @@ -118,6 +118,10 @@ export default Vue.extend({
margin-bottom: 16px;
word-break: normal;
&__active {
color: #DBE6FF;
}
@media (--screen-mobile) {
font-size: 14px;
}
Expand All @@ -134,6 +138,10 @@ a {
margin-bottom: 20px;
white-space: nowrap;
&__active {
color: #DBE6FF;
}
&-medium {
font-size: 36px;
Expand Down Expand Up @@ -201,7 +209,7 @@ a {
.input-style {
background-color: #242832;
color: #DBE6FF;
color: #F2F6FF;
font-weight: 400;
border: none;
border-radius: 8px;
Expand All @@ -213,6 +221,7 @@ a {
&-active {
background-color: #323B4C;
color: #DBE6FF;
&::placeholder {
color: #DBE6FF;
Expand Down
4 changes: 3 additions & 1 deletion components/grid-info.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="block">
<div class="grid__block">
<div class="title">Open Source</div>
<div class="text">Исходный код открыт для исследования и обслуживания</div>
<div class="text">Исходный код открыт<br/>для исследования и обслуживания</div>
</div>
<div class="grid__block">
<div class="title">100 000 000</div>
Expand Down Expand Up @@ -97,11 +97,13 @@ export default Vue.extend({
&__block {
background-color: #242936;
display: grid;
align-items: center;
gap: 12px;
border-radius: 9px;
width: auto;
height: auto;
padding: 40px 30px;
@media(--screen-mobile) {
padding: 20px 30px;
}
Expand Down
6 changes: 5 additions & 1 deletion components/site-header-ru.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export default Vue.extend({
^&--menu-showed & {
@media (--screen-mobile) {
display: block;
padding-bottom: 24px;
padding-bottom: 12px;
}
}
Expand Down Expand Up @@ -173,6 +173,10 @@ export default Vue.extend({
gap: 10px;
background: linear-gradient(248.21deg, #0075FF 25.68%, #B56BFF 107.97%);
@media (--screen-mobile) {
display: none;
}
.text-container {
font-weight: 500;
font-size: 15px;
Expand Down

0 comments on commit fc938f2

Please sign in to comment.