github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/ui/src/views/app/components/userMenu/userMenu.styl (about)

     1  // Copyright 2019 The Cockroach Authors.
     2  //
     3  // Use of this software is governed by the Business Source License
     4  // included in the file licenses/BSL.txt.
     5  //
     6  // As of the Change Date specified in that file, in accordance with
     7  // the Business Source License, use of this software will be governed
     8  // by the Apache License, Version 2.0, included in the file
     9  // licenses/APL.txt.
    10  
    11  @require "~styl/base/palette.styl"
    12  @require '~src/components/core/index'
    13  
    14  .user-menu
    15    display flex
    16    flex-direction column
    17    font-size 14px
    18    min-width 174px
    19    text-transform none
    20    text-align left
    21    font-weight normal
    22    font-family $font-family--base
    23  
    24  .user-menu__item
    25    padding 0 16px
    26  
    27  .user-menu__username
    28    color $colors--neutral-7
    29    padding 10px 16px
    30    font-weight bold
    31  
    32  .user-menu__logout-menu-item
    33    color $colors--primary-blue-3
    34    border-top-width 1px
    35    border-top-color $popover-border-color
    36    border-top-style solid
    37    padding 10px 16px 14px
    38