Skip to content

Commit

Permalink
Fixed: Wrapping of naming tokens with alternate separators
Browse files Browse the repository at this point in the history
(cherry picked from commit 80630bf97f5bb3b49d4824dc039d2edfc74e4797)

Closes #3294
Closes #3360
  • Loading branch information
stevietv authored and mynameisbogdan committed Mar 15, 2024
1 parent 8fb1aff commit 5dc5592
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions frontend/src/Settings/MediaManagement/Naming/NamingOption.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.option {
display: flex;
align-items: center;
align-items: stretch;
flex-wrap: wrap;
margin: 3px;
border: 1px solid var(--borderColor);
Expand All @@ -17,7 +17,7 @@
}

.small {
width: 460px;
width: 490px;
}

.large {
Expand All @@ -26,17 +26,17 @@

.token {
flex: 0 0 50%;
padding: 6px 16px;
padding: 6px;
background-color: var(--popoverTitleBackgroundColor);
font-family: $monoSpaceFontFamily;
}

.example {
display: flex;
align-items: center;
align-self: stretch;
justify-content: space-between;
flex: 0 0 50%;
padding: 6px 16px;
padding: 6px;
background-color: var(--popoverBodyBackgroundColor);

.footNote {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"lint": "eslint --config frontend/.eslintrc.js --ignore-path frontend/.eslintignore frontend/",
"lint-fix": "yarn lint --fix",
"stylelint-linux": "stylelint $(find frontend -name '*.css') --config frontend/.stylelintrc",
"stylelint-windows": "stylelint frontend/**/*.css --config frontend/.stylelintrc"
"stylelint-windows": "stylelint \"frontend/**/*.css\" --config frontend/.stylelintrc"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 5dc5592

Please sign in to comment.