-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: suggested styling changes * fix: margins * fix: coworker hight
- Loading branch information
Showing
12 changed files
with
473 additions
and
547 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,69 +5,65 @@ | |
import SocialMedia from './SocialMedia.svelte' | ||
</script> | ||
|
||
<div class="bg-grey-cod pt-8 pb-24"> | ||
<Layout.Base> | ||
<Layout.Content> | ||
<div class="flex items-start md:items-end flex-col md:flex-row"> | ||
<div class="w-2/3 flex flex-col sm:flex-row gap-8"> | ||
<div> | ||
<div class="mb-4"> | ||
<CityIcon /> | ||
</div> | ||
<p class="text-white font-medium tracking-wide">Iteam Stockholm</p> | ||
<p class="text-white font-light text-sm leading-7"> | ||
Östermalmsgatan 26A | ||
<br /> | ||
114 26 Stockholm | ||
<br /> | ||
<a | ||
href="https://goo.gl/maps/cVxFADSToWkbwCjBA" | ||
target="_blank" | ||
class="underline"> | ||
Google Maps | ||
</a> | ||
</p> | ||
<p class="text-white font-light text-sm leading-7 mt-3"> | ||
<a href="tel:08267090">08-26 70 90</a> | ||
</p> | ||
<p class="text-white font-light text-sm leading-7"> | ||
<a class="underline" href="mailto:[email protected]">[email protected]</a> | ||
</p> | ||
</div> | ||
<div class="md:pt-0 sm:px-20"> | ||
<div class="mb-4"> | ||
<HarborIcon /> | ||
</div> | ||
<p class="text-white font-medium tracking-wide">Iteam Göteborg</p> | ||
<p class="text-white font-light text-sm leading-7"> | ||
Järntorgsgatan 12-14 | ||
<br /> | ||
413 01 Göteborg | ||
<br /> | ||
<a | ||
href="https://goo.gl/maps/fDzuuDuUSxU6jLGb8" | ||
target="_blank" | ||
class="underline"> | ||
Google Maps | ||
</a> | ||
</p> | ||
|
||
<p class="text-white font-light text-sm leading-7 mt-3"> | ||
<a href="tel:0734029112">073-402 91 12</a> | ||
</p> | ||
<p class="text-white font-light text-sm leading-7"> | ||
<a | ||
class="underline" | ||
href="mailto:[email protected]">[email protected]</a> | ||
</p> | ||
|
||
<div /> | ||
</div> | ||
<Layout.Container background={'bg-grey-cod'}> | ||
<div class="flex items-start md:items-end flex-col md:flex-row text-white"> | ||
<div class="w-2/3 flex flex-col sm:flex-row gap-8"> | ||
<div> | ||
<div class="mb-4"> | ||
<CityIcon /> | ||
</div> | ||
<div class="pt-20 md:pt-0 w-auto md:w-1/3 flex justify-end text-white"> | ||
<SocialMedia /> | ||
<p class="font-medium tracking-wide">Iteam Stockholm</p> | ||
<p class="font-light text-sm leading-7"> | ||
Östermalmsgatan 26A | ||
<br /> | ||
114 26 Stockholm | ||
<br /> | ||
<a | ||
href="https://goo.gl/maps/cVxFADSToWkbwCjBA" | ||
target="_blank" | ||
class="underline"> | ||
Google Maps | ||
</a> | ||
</p> | ||
<p class="font-light text-sm leading-7 mt-3"> | ||
<a href="tel:08267090">08-26 70 90</a> | ||
</p> | ||
<p class="font-light text-sm leading-7"> | ||
<a class="underline" href="mailto:[email protected]">[email protected]</a> | ||
</p> | ||
</div> | ||
<div class="md:pt-0 sm:px-20"> | ||
<div class="mb-4"> | ||
<HarborIcon /> | ||
</div> | ||
<p class="font-medium tracking-wide">Iteam Göteborg</p> | ||
<p class="font-light text-sm leading-7"> | ||
Järntorgsgatan 12-14 | ||
<br /> | ||
413 01 Göteborg | ||
<br /> | ||
<a | ||
href="https://goo.gl/maps/fDzuuDuUSxU6jLGb8" | ||
target="_blank" | ||
class="underline"> | ||
Google Maps | ||
</a> | ||
</p> | ||
|
||
<p class="font-light text-sm leading-7 mt-3"> | ||
<a href="tel:0734029112">073-402 91 12</a> | ||
</p> | ||
<p class="font-light text-sm leading-7"> | ||
<a | ||
class="underline" | ||
href="mailto:[email protected]">[email protected]</a> | ||
</p> | ||
|
||
<div /> | ||
</div> | ||
</Layout.Content> | ||
</Layout.Base> | ||
</div> | ||
</div> | ||
<div class="pt-20 md:pt-0 w-auto md:w-1/3 flex justify-end"> | ||
<SocialMedia /> | ||
</div> | ||
</div> | ||
</Layout.Container> |
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,3 +1,7 @@ | ||
<div class="px-8 flex justify-between lg:max-w-screen-xl mx-auto"> | ||
<script> | ||
export let background = '' | ||
</script> | ||
|
||
<div class="iteam-width gap-y-16 py-16 md:py-32 {background} "> | ||
<slot /> | ||
</div> |
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
Oops, something went wrong.