-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #422 from pycontw/fix/ui-venue
feat: ui venue change
- Loading branch information
Showing
12 changed files
with
473 additions
and
194 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
14.18.1 |
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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<template> | ||
<div | ||
class="venue-division flex items-center justify-center overflow-hidden whitespace-nowrap pt-6 text-primary-500 md:pb-10 md:pt-16" | ||
> | ||
<div class="venue-division-container mx-[10px] flex-1"> | ||
<slot /> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'VenueDivision', | ||
} | ||
</script> | ||
|
||
<style lang="postcss" scoped> | ||
.venue-division { | ||
& >>> h3 { | ||
padding: 0 14px; | ||
position: relative; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
&::before { | ||
position: absolute; | ||
content: ''; | ||
left: -10px; | ||
transform: translateX(-100%); | ||
border: 4px solid #9387ff; | ||
display: inline-block; | ||
border-radius: 50%; | ||
} | ||
&::after { | ||
position: absolute; | ||
content: ''; | ||
right: -10px; | ||
transform: translateX(100%); | ||
border: 4px solid #9387ff; | ||
display: inline-block; | ||
border-radius: 50%; | ||
} | ||
margin: 0; | ||
} | ||
&::before { | ||
max-width: 336px; | ||
content: ''; | ||
width: 100%; | ||
border-top: 1px solid #9387ff; | ||
display: inline-block; | ||
} | ||
&::after { | ||
max-width: 336px; | ||
width: 100%; | ||
content: ''; | ||
border-top: 1px solid #9387ff; | ||
display: inline-block; | ||
} | ||
} | ||
</style> |
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.