github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/ui/src/views/app/components/modal/styles.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 '~src/components/core/index' 12 13 .custom--modal 14 border-radius 5px 15 box-shadow 0 0 1px 0 rgba(71, 88, 114, 0.47) 16 background-color $colors--white 17 padding 0 18 min-width 905px 19 .ant-modal-close-x 20 font-size 14px 21 color $colors--neutral-8 22 .ant-modal-footer 23 display flex 24 justify-content flex-end 25 border-top none 26 padding 0 24px 24px 27 .ant-modal-header 28 border-bottom none 29 padding 24px 24px 0 30 .ant-modal-body 31 padding 0 24px 11px 32 .ant-modal-title 33 font-family SourceSansPro-Regular 34 font-size 20px 35 line-height 1.6 36 letter-spacing -0.2px 37 color $colors--neutral-8 38 &__close--button 39 width 70px 40 height 40px 41 display flex 42 justify-content center 43 align-items center 44 border-radius 3px 45 background-color $colors--primary-blue-3 46 color $colors--white 47 font-family SourceSansPro-SemiBold 48 font-size 14px 49 line-height 1.71 50 letter-spacing 0.1px 51 text-transform none 52 margin 0 53 &:hover, &:focus 54 background-color $colors--primary-blue-3 55 color $colors--white