-
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.
Merge pull request #8 from vuesence/feature/issue-7/add-scss-support
refactor: add SCSS for better CE support
- Loading branch information
Showing
15 changed files
with
241 additions
and
216 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
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
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 |
---|---|---|
|
@@ -14,3 +14,7 @@ defineProps<{ | |
</span> | ||
</a> | ||
</template> | ||
|
||
<style lang="scss"> | ||
@import "./css/user-badge.scss"; | ||
</style> |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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,112 @@ | ||
.release-timeline { | ||
a { | ||
text-decoration: none; | ||
color: var(--rt-c-brand-1); | ||
} | ||
|
||
.issues h1, | ||
.issues h2, | ||
.issues h3, | ||
.issues h4, | ||
.issues h5, | ||
.issues h6 { | ||
margin: 7px 0 10px 0; | ||
border-top: none; | ||
padding: 0; | ||
} | ||
|
||
.issue p { | ||
margin: 5px 0 3px 0; | ||
line-height: .9rem; | ||
} | ||
|
||
.commits .issue p, | ||
.pulls .issue p { | ||
margin: 1px 0 0 0; | ||
/* line-height: .9rem; */ | ||
} | ||
|
||
.tab { | ||
text-wrap: nowrap; | ||
background-color: inherit; | ||
color: var(--rt-c-text-3); | ||
cursor: pointer; | ||
padding: 2px 5px; | ||
text-align: left; | ||
border: solid 1px var(--rt-c-border); | ||
border-radius: 3px; | ||
transition: 0.4s; | ||
margin: 7px 7px 0 0; | ||
font-size: 0.7rem; | ||
text-transform: lowercase; | ||
letter-spacing: 0.3px; | ||
font-weight: 400; | ||
line-height: 0.8rem; | ||
|
||
&.active, | ||
&:hover { | ||
color: var(--rt-c-text-2); | ||
border-color: var(--rt-c-text-2); | ||
background-color: var(--rt-c-bg-alt) | ||
} | ||
} | ||
|
||
.issues { | ||
padding-top: 5px; | ||
background-color: var(--rt-c-bg-issues); | ||
overflow: hidden; | ||
max-height: 0; | ||
/* transition: all 0.5s cubic-bezier(0, 1, 0, 1); */ | ||
transition: max-height 0.6s ease-in-out, opacity 0.4s ease-in-out; | ||
|
||
|
||
section { | ||
opacity: 0; | ||
display: none; | ||
transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out; | ||
|
||
&.open { | ||
opacity: 1; | ||
display: block; | ||
transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out; | ||
} | ||
} | ||
|
||
.issue { | ||
font-size: 0.8rem; | ||
letter-spacing: -0.3px; | ||
color: var(--rt-c-text-2); | ||
line-height: 0.8rem; | ||
display: block; | ||
border-style: dashed; | ||
border-width: 1px; | ||
padding: 3px 4px; | ||
border-color: var(--rt-c-border); | ||
margin-top: 5px; | ||
font-weight: 400; | ||
|
||
h1 { | ||
font-size: 1.2rem; | ||
} | ||
|
||
h2 { | ||
font-size: 1.05rem; | ||
} | ||
|
||
h3 { | ||
font-size: 1rem; | ||
} | ||
} | ||
} | ||
} | ||
|
||
@media screen and (max-width: 440px) { | ||
.issues { | ||
margin-left: -20px; | ||
} | ||
|
||
.left .issues { | ||
margin-right: -20px; | ||
text-align: right; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.