mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-30 06:45:47 -04:00
Minor fixes (#911)
* Replace full links Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> * Use dark mode hook Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> * Add overflow for graphviz and abc Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> * Cap max height of toc overlay Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> * Remove extension from css import Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> * Fix hook Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
This commit is contained in:
parent
528e67e11e
commit
bf42b9c460
15 changed files with 39 additions and 28 deletions
|
@ -5,11 +5,10 @@
|
|||
*/
|
||||
|
||||
import { useEffect } from 'react'
|
||||
import { useSelector } from 'react-redux'
|
||||
import { ApplicationState } from '../../redux'
|
||||
import { useIsDarkModeActivated } from './use-is-dark-mode-activated'
|
||||
|
||||
export const useApplyDarkMode = ():void => {
|
||||
const darkModeActivated = useSelector((state: ApplicationState) => state.darkMode.darkMode)
|
||||
const darkModeActivated = useIsDarkModeActivated()
|
||||
|
||||
useEffect(() => {
|
||||
if (darkModeActivated) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue