首页 > 解决方案 > (ngx-admin/Nebular) 如何删除我的自定义登录组件上的后退按钮?

问题描述

我已遵循 https://akveo.github.io/nebular/docs/auth/custom-auth-components#create-auth-module的说明

创建自定义登录组件。

问题是如何从该组件中删除后退按钮?

在此处输入图像描述

标签: angularnebularngx-admin

解决方案


只需在 component.scss 中尝试这个 css

::ng-deep .navigation .link nb-icon {
  display: none !important;
}

推荐阅读