mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
- replace renamed `word-wrap` with new name `overflow-wrap` (CSS3) - use extensions for `@use` Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
13 lines
225 B
SCSS
13 lines
225 B
SCSS
/*!
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
li {
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
pre {
|
|
white-space: pre-wrap;
|
|
overflow-wrap: break-word;
|
|
}
|