Configure the Global Style

CSS styling that should apply to all content and all layouts added to the launchpad, can be added in the Global Style section. CSS added in the Global Style section, will apply globally to all content, like tiles and tile groups.

You can also add CSS style in the header section, but CSS added there will be placed before the UI5 library files.

CSS added in the Global Style section, will dynamically be placed below the UI5 library CSS files, so that you can target UI5 classes without resorting to !important.

An example of css

:root {
    --lightPrimaryColor: #91c8f6
}

.sun-editor .se-wrapper .se-wrapper-inner {
    user-select: all;
    -o-user-select: all;
    -moz-user-select: all;
    -khtml-user-select: all;
    -webkit-user-select: all;
    -ms-user-select: all;
}