Skip to content

Commit

Permalink
Merge pull request #71 from IUBLibTech/fix-build-issues
Browse files Browse the repository at this point in the history
Fix CSS issues with latest build fixes
  • Loading branch information
Dananji authored Mar 10, 2025
2 parents cfd3b92 + 1518a0a commit bbeb783
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/MetadataEditor/MetadataEditor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class MetadataEditor extends Component {
whiteText,
} = this.state;
return (
<form className='metadata-editor'onKeyDown={this.handleKeyDown}>
<form className='metadata-editor' onKeyDown={this.handleKeyDown}>
<TextField
id="label"
autoFocus={true}
Expand Down
4 changes: 3 additions & 1 deletion src/components/Playhead/Playhead.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use "sass:color";

.playhead {
position: absolute;
background: #FF4081;
Expand Down Expand Up @@ -51,7 +53,7 @@
// border-right: 5px solid transparent;
//}
.playhead:before {
background: mix(#FF4081, #000, 70%);
background: color.mix(#FF4081, #000, 70%);
transform: scale(1);
}
}
2 changes: 1 addition & 1 deletion src/components/TimelineMarker/TimelineMarker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class TimelineMarker extends Component {

return (
<div
className={bookmark ? 'timeline-marker--bookmark' : 'timeline-marker--marker'}
className={`timeline-marker ${bookmark ? 'timeline-marker--bookmark' : 'timeline-marker--marker'}`}
style={{ left: `${x}%` }}
onMouseDown={onMouseDown}
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/VolumeSliderCompact/VolumeSliderCompact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class VolumeSliderCompact extends Component {
const { volume, flipped } = this.props;

return (
<div className={flipped ? 'volume-slider-compact--flipped' : 'volume-slider-compact'}>
<div className={flipped ? 'volume-slider-compact volume-slider-compact--flipped' : 'volume-slider-compact'}>
<Slider
min={0}
max={100}
Expand Down

0 comments on commit bbeb783

Please sign in to comment.