github.com/argoproj/argo-cd@v1.8.7/ui/src/app/shared/components/empty-state/empty-state.scss (about)

     1  @import 'node_modules/argo-ui/src/styles/config';
     2  
     3  .empty-state {
     4      text-align: center;
     5      &__icon {
     6          position: relative;
     7          background-color: $argo-color-gray-4;
     8          width: 15em;
     9          height: 15em;
    10          border-radius: 7.5em;
    11          margin: 2em auto;
    12          i {
    13              position: absolute;
    14              top: 50%;
    15              left: 50%;
    16              transform: translateY(-50%) translateX(-50%);
    17              color: white;
    18              &::before {
    19                  font-size: 10em;
    20              }
    21          }
    22      }
    23  }