mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-17 16:37:43 +00:00
chore: fix LF/CRLF for errant SCSS file (#7047)
.gitattribute added to help reduce the potential of this in the future.
This commit is contained in:
parent
6c244c06c4
commit
bbc12f70dc
2 changed files with 49 additions and 43 deletions
6
.gitattributes
vendored
Normal file
6
.gitattributes
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Force text files to LF in repo and working tree
|
||||
* text=auto
|
||||
*.scss text eol=lf
|
||||
*.html text eol=lf
|
||||
*.js text eol=lf
|
||||
*.ts text eol=lf
|
||||
|
|
@ -1,43 +1,43 @@
|
|||
.form-wrapper {
|
||||
overflow: hidden;
|
||||
padding: var(--s2) var(--s2) var(--s) !important;
|
||||
|
||||
config-form {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.width100 {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
:host {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
$this-panel-padding-left-right: 12px;
|
||||
|
||||
:host ::ng-deep .collapsible-header {
|
||||
font-size: 16px;
|
||||
margin-top: 0;
|
||||
padding: 10px $this-panel-padding-left-right;
|
||||
}
|
||||
|
||||
:host ::ng-deep .collapsible-panel {
|
||||
//border-top: 1px solid black;
|
||||
overflow: visible;
|
||||
|
||||
> * {
|
||||
// for help icon positioning
|
||||
// does not work because of translate on the slide down ani element
|
||||
// position: static;
|
||||
|
||||
// add a padding
|
||||
padding: 0 $this-panel-padding-left-right;
|
||||
}
|
||||
}
|
||||
|
||||
:host ::ng-deep .extra-margin-top {
|
||||
margin-top: var(--s4);
|
||||
}
|
||||
.form-wrapper {
|
||||
overflow: hidden;
|
||||
padding: var(--s2) var(--s2) var(--s) !important;
|
||||
|
||||
config-form {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.width100 {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
:host {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
$this-panel-padding-left-right: 12px;
|
||||
|
||||
:host ::ng-deep .collapsible-header {
|
||||
font-size: 16px;
|
||||
margin-top: 0;
|
||||
padding: 10px $this-panel-padding-left-right;
|
||||
}
|
||||
|
||||
:host ::ng-deep .collapsible-panel {
|
||||
//border-top: 1px solid black;
|
||||
overflow: visible;
|
||||
|
||||
> * {
|
||||
// for help icon positioning
|
||||
// does not work because of translate on the slide down ani element
|
||||
// position: static;
|
||||
|
||||
// add a padding
|
||||
padding: 0 $this-panel-padding-left-right;
|
||||
}
|
||||
}
|
||||
|
||||
:host ::ng-deep .extra-margin-top {
|
||||
margin-top: var(--s4);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue