Fixed an issue that would cause the scroll direction to be inverted on secondary monitors. (#683)
* Fixed an issue that would cause the scroll direction to be inverted on secondary monitors. * Update import paths and tsconfig.
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
import { BindableChild } from 'astal/gtk3/astalify';
|
||||
|
||||
export const LeftSection = ({ children }: SectionProps): JSX.Element => {
|
||||
return (
|
||||
<box className={'section left'} vertical expand>
|
||||
@@ -17,5 +15,5 @@ export const RightSection = ({ children }: SectionProps): JSX.Element => {
|
||||
};
|
||||
|
||||
interface SectionProps {
|
||||
children?: BindableChild | BindableChild[];
|
||||
children?: JSX.Element | JSX.Element[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user