Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/style/index.styl
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ body.aframe-inspector-opened
z-index 999999999

svg
color rgb(219 97 162)
color rgb(219, 97, 162)
fill currentColor

.sponsor-btn:hover
Expand Down
2 changes: 1 addition & 1 deletion src/style/scenegraph.styl
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
background var(--color-base-300)
border 1px solid var(--color-base-300)
border-radius 4px
box-shadow 0 4px 12px rgb(0 0 0 / 30%)
box-shadow 0 4px 12px rgba(0, 0, 0, 0.3)
max-height 300px
overflow-y auto
position absolute
Expand Down
19 changes: 10 additions & 9 deletions src/style/textureModal.styl
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.modal
animation animateopacity 0.2s ease-out
background-color rgb(0 0 0)
background-color rgb(0 0 0 / 60%)
background-color rgba(0, 0, 0, 0.6)
display flex
height 100%
left 0
Expand All @@ -13,19 +12,16 @@

.modal h3
font-size 18px
font-weight 100
font-weight 600
margin 0.6em 0

#textureModal .modal-content
height calc(100% - 50px)
width calc(100% - 50px)

.modal-content
animation animatetop 0.2s ease-out
animation-duration 0.2s
animation-name animatetop
background-color var(--color-base-200)
box-shadow 0 4px 8px 0 rgb(0 0 0 / 50%), 0 6px 20px 0 rgb(0 0 0 / 50%)
box-shadow 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5)
margin auto
overflow hidden
padding 0
Expand Down Expand Up @@ -70,7 +66,7 @@

.gallery li
border-radius 2px
box-shadow 0 0 6px rgb(0 0 0 / 60%)
box-shadow 0 0 6px rgba(0, 0, 0, 0.6)
cursor pointer
margin 8px
overflow hidden
Expand Down Expand Up @@ -194,9 +190,14 @@
position relative
width 200px

.assets.search input
box-sizing border-box
padding-right 20px
width 100%

.assets.search svg
position absolute
right 0
right 5px
top 5px

.new_asset_options
Expand Down
3 changes: 3 additions & 0 deletions stylelint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ module.exports = {
plugins: ['stylelint-order'],
ignoreFiles: ['src/style/themes.css'],
rules: {
'alpha-value-notation': null,
'color-function-alias-notation': null,
'color-function-notation': null,
'declaration-property-value-no-unknown': null,
'import-notation': null,
'media-feature-range-notation': 'prefix',
Expand Down