Sergey Andrievskiy

Results 14 comments of Sergey Andrievskiy

Hi @henryyue2010. You can do this by calling mixins for individual components inside `nb-install`. Since chat is using a button, input and icon components under the hood you need to...

Hi @helxsz. You can find the svg source in [room-selector.component.html](https://github.com/akveo/ngx-admin/blob/16bcc90d572ff83cd5be9897ffa445914fa1a3af/src/app/pages/dashboard/rooms/room-selector/room-selector.component.html#L3) and [room-selector.component.ts](https://github.com/akveo/ngx-admin/blob/16bcc90d572ff83cd5be9897ffa445914fa1a3af/src/app/pages/dashboard/rooms/room-selector/room-selector.component.ts#L18). Since it's just a text format, you can edit it by hand 🙂. Or you can copy resulting...

You can find where font-main and font-secondary used by searching for it in [theme mappings file](https://github.com/akveo/nebular/blob/master/src/framework/theme/styles/themes/_default.scss).

Hi @oleersoy. Could you elaborate on the integration? What features would you like to be integrated?

@rdev-software According to the error there is something missing from `@angular-devkit/core` package. Nebular 3.6+ requires Angular 8, so installing `@angular-devkit/[email protected]` should fix this.

Hi @ashwanthrao! Which version of nebular do you use? Can't see this issue on latest ngx-admin.

Hi @venukommu! You can use auth guards to prevent accessing routes for unauthenticated users. See [guide](https://akveo.github.io/nebular/docs/auth/protecting-application-routes#protecting-application-based-on-user-authentication) for details.

Hi @daveboulden. Theme variables were heavily updated during migration to the [Eva Design system in Nebular 4](https://akveo.github.io/nebular/docs/design-system/eva-design-system-intro#eva-design-system), so `header-fg` became `header-text-color` and `header-bg` became `header-background-color`. ([full list of header variables](https://akveo.github.io/nebular/docs/components/layout/theme#nblayoutheadercomponent))...

@daveboulden There is no config for statuses. My suggestion is to extend `NbCardComponent` and add host binding for the custom status: ``` export class MyCustomCard extends NbCardComponent { @HostBinding('class.status-custom') get...

Hi @mhhonline! The issue is that TinyMCE tries to load skin by URL relative to the current path `pages/editors/tinymce/assets/skins/...` when it should be `/assets/skins/...`. I've fixed this in ngx-admin, see...