diff --git a/services/web/frontend/fonts/material-symbols.css b/services/web/frontend/fonts/material-symbols.css
index 5fe529c836..6d29541ba0 100644
--- a/services/web/frontend/fonts/material-symbols.css
+++ b/services/web/frontend/fonts/material-symbols.css
@@ -29,4 +29,12 @@
direction: ltr;
font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
+
+ &.size-2x {
+ font-size: 2em;
+ }
+
+ &.rotate-180 {
+ transform: rotate(180deg);
+ }
}
diff --git a/services/web/frontend/fonts/material-symbols/MaterialSymbolsRoundedSlice.woff2 b/services/web/frontend/fonts/material-symbols/MaterialSymbolsRoundedSlice.woff2
index 19f6bfd6db..02b8510f40 100644
Binary files a/services/web/frontend/fonts/material-symbols/MaterialSymbolsRoundedSlice.woff2 and b/services/web/frontend/fonts/material-symbols/MaterialSymbolsRoundedSlice.woff2 differ
diff --git a/services/web/frontend/js/features/dictionary/components/dictionary-modal-content.tsx b/services/web/frontend/js/features/dictionary/components/dictionary-modal-content.tsx
index 7543878d23..0a0fabf242 100644
--- a/services/web/frontend/js/features/dictionary/components/dictionary-modal-content.tsx
+++ b/services/web/frontend/js/features/dictionary/components/dictionary-modal-content.tsx
@@ -1,12 +1,20 @@
import { useCallback, useState } from 'react'
import { useTranslation } from 'react-i18next'
-import { Alert, Button, Modal } from 'react-bootstrap'
-import Icon from '../../../shared/components/icon'
-import Tooltip from '../../../shared/components/tooltip'
import useAsync from '../../../shared/hooks/use-async'
import { postJSON } from '../../../infrastructure/fetch-json'
import ignoredWords from '../ignored-words'
import { debugConsole } from '@/utils/debugging'
+import {
+ OLModalBody,
+ OLModalFooter,
+ OLModalHeader,
+ OLModalTitle,
+} from '@/features/ui/components/ol/ol-modal'
+import OLTooltip from '@/features/ui/components/ol/ol-tooltip'
+import OLNotification from '@/features/ui/components/ol/ol-notification'
+import OLButton from '@/features/ui/components/ol/ol-button'
+import OLIconButton from '@/features/ui/components/ol/ol-icon-button'
+import { bsVersion } from '@/features/utils/bootstrap-5'
type DictionaryModalContentProps = {
handleHide: () => void
@@ -42,13 +50,16 @@ export default function DictionaryModalContent({
return (
<>
-
- -
++
+ } + /> ) : ( - + )} - +{data.messages}
-