-
Notifications
You must be signed in to change notification settings - Fork 0
Styling
ProgramX-NPledger edited this page Jun 30, 2024
·
1 revision
Styling uses a combinatin of themes from PrimeNG and layout from bootstrap.
In order to style the form and related user-interface elements, you should modify the styles in the taggloo theme, within the client/src/assets/themes/taggloo folder.
The styling uses SCSS to define styles with transpilation provided by Angular as part of its bootstrapping of the application by virtue of the theme's addition to the angular.json configuration file:
{
"projects": {
"client": {
"architect": {
"build": {
"options": {
"styles": [
"src/assets/themes/taggloo/theme.scss",
],
Additional styles can be added to the styles property as per Angular configuration.