CSS Work In Progress

* new peertube theme for ConverseJS
* CSS linting
* splash screen
* defining CSS variables
This commit is contained in:
John Livingston
2021-11-09 17:45:54 +01:00
parent aa156d3c06
commit 77975ffdb6
8 changed files with 903 additions and 7 deletions

17
.stylelintrc.js Normal file
View File

@ -0,0 +1,17 @@
'use strict';
module.exports = {
extends: [
'stylelint-config-recommended-scss',
'stylelint-config-standard-scss'
],
rules: {
'selector-class-pattern': [
// extending the kebab-case to accept ConverseJS class names.
'^([a-z][a-z0-9]*)(-[a-z0-9]+)*(__[a-z]+)?$',
{
message: 'Expected class selector to be kebab-case, or ConverseJS-style.',
}
]
}
}