-
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.
#29: Move scoped styles to _tools.scss
- Loading branch information
1 parent
2af164a
commit a7ce1be
Showing
7 changed files
with
52 additions
and
54 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,50 @@ | ||
// ChemProps.vue | ||
html { | ||
scroll-behavior: smooth; | ||
} | ||
|
||
// CsvPlotter.vue | ||
.upload { | ||
border: 5px dashed #777777; | ||
min-height: 400px; | ||
} | ||
|
||
// LineChart.vue | ||
// Line | ||
.nm-line { | ||
stroke: #3cba54; | ||
stroke-width: 2px; | ||
fill: none; | ||
} | ||
|
||
.tooltip { | ||
fill: white; | ||
stroke: #444; | ||
} | ||
|
||
.overlay { | ||
fill: none; | ||
pointer-events: all; | ||
} | ||
|
||
// ReferenceContainer.vue | ||
.reference { | ||
padding-left: 36px; | ||
text-indent: -36px; | ||
} | ||
|
||
// PixelUnit.vue | ||
#unit-cell { | ||
background-color: #c0c0c0; | ||
position: relative; | ||
margin-left: 0px; | ||
margin-top: 0px; | ||
min-width: 300px; | ||
min-height: 300px; | ||
max-width: 300px; | ||
max-height: 300px; | ||
} | ||
|
||
.adjust-padding { | ||
padding: 3rem !important; | ||
} |
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 |
---|---|---|
@@ -1,18 +1,2 @@ | ||
<template src="./PixelUnit.html"></template> | ||
<script src="./PixelUnit.js"></script> | ||
<style scoped> | ||
#unit-cell { | ||
background-color: #c0c0c0; | ||
position: relative; | ||
margin-left: 0px; | ||
margin-top: 0px; | ||
min-width: 300px; | ||
min-height: 300px; | ||
max-width: 300px; | ||
max-height: 300px; | ||
} | ||
.adjust-padding { | ||
padding: 3rem !important; | ||
} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,2 @@ | ||
<template src="./csvPlotter.html"></template> | ||
<script src="./csvPlotter.js"></script> | ||
<style scoped> | ||
.upload { | ||
border: 5px dashed #777777; | ||
min-height: 400px; | ||
} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,2 @@ | ||
<template src="./chemProps.html"></template> | ||
<script src="./chemProps.js"></script> | ||
|
||
<style scoped> | ||
html { | ||
scroll-behavior: smooth; | ||
} | ||
</style> |