-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
920ac23
commit ff7ebc9
Showing
7 changed files
with
72 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,37 @@ | ||
@import "../mixins.scss"; | ||
@import '../mixins.scss'; | ||
|
||
.param-list { | ||
display: flex; | ||
gap: 10px; | ||
color: rgba($primary-txt-color, 50%); | ||
font-size: 14px; | ||
font-weight: 500; | ||
line-height: 1.4; | ||
text-transform: capitalize; | ||
list-style: none; | ||
margin: 0; | ||
padding: 0; | ||
|
||
&__item { | ||
display: flex; | ||
align-items: center; | ||
gap: 10px; | ||
gap: 5px 10px; | ||
flex-wrap: wrap; | ||
color: rgba($primary-txt-color, 50%); | ||
font-size: 14px; | ||
font-weight: 500; | ||
line-height: 1.4; | ||
text-transform: capitalize; | ||
list-style: none; | ||
margin: 0; | ||
padding: 0; | ||
|
||
&::after { | ||
content: ""; | ||
@include square(4px); | ||
background-color: $accent-bg-color; | ||
border-radius: 50%; | ||
} | ||
&__item { | ||
display: flex; | ||
align-items: center; | ||
gap: 10px; | ||
|
||
&:last-child::after { | ||
content: none; | ||
&::after { | ||
content: ''; | ||
@include square(4px); | ||
background-color: $accent-bg-color; | ||
border-radius: 50%; | ||
} | ||
|
||
&:last-child::after { | ||
content: none; | ||
} | ||
} | ||
} | ||
|
||
&__link { | ||
color: rgba($primary-txt-color, 50%); | ||
text-decoration: none; | ||
} | ||
&__link { | ||
color: rgba($primary-txt-color, 50%); | ||
text-decoration: none; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
{% from "ui/section_header.njk" import section_header with context %} | ||
|
||
{% set footer_databag = { international_number: "+7 987 654 32 10", international_number_href: "+79876543210", european_number: "+3 123 456 789", european_number_href: "+3123456789", location: "Georgia, Poti", email: "[email protected]" } %} | ||
<footer class="page-footer"> | ||
<footer class="page-footer" id="contacts"> | ||
<div class="container"> | ||
<div class="page-footer__in"> | ||
{{ section_header(className="page-footer__title", title="Contact Us", align_prop_title='right') }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 0 additions & 5 deletions
5
frontend/src/templates/pages/index/sections/contacts_section.njk
This file was deleted.
Oops, something went wrong.