Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat: code group uses codeBgColor for background
  • Loading branch information
d-pollard committed Sep 3, 2020
commit 0f60aab7c5a2e9cfd8db276f2a3b23fa80048fce
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ export default {
}
</script>

<style scoped>
<style lang="stylus" scoped>
.theme-code-group {}
.theme-code-group__nav {
margin-bottom: -35px;
background-color: #282c34;
background-color: $codeBgColor;
padding-bottom: 22px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
Expand All @@ -78,7 +78,6 @@ export default {
background-color: transparent;
font-size: 0.85em;
line-height: 1.4;
color: #FFFFFF; /* Fallback for older browsers */
color: rgba(255, 255, 255, 0.9);
font-weight: 600;
}
Expand Down