Add user invite doc

This commit is contained in:
braginini
2022-10-20 11:52:56 +02:00
parent b92518f428
commit ebc637213e
3 changed files with 94 additions and 1 deletions

View File

@@ -72,7 +72,7 @@ html[data-theme='dark'] .docusaurus-highlight-code-line {
justify-content: center;
line-height: 1.25;
margin: 0;
min-height: 3rem;
min-height: 2.5rem;
padding: calc(.875rem - 1px) calc(1.5rem - 1px);
position: relative;
text-decoration: none;
@@ -99,3 +99,49 @@ html[data-theme='dark'] .docusaurus-highlight-code-line {
box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
transform: translateY(0);
}
.button-6 {
align-items: center;
background-clip: padding-box;
background-color: #1890ff;
border: 1px solid transparent;
border-radius: .25rem;
box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
box-sizing: border-box;
color: #fff;
cursor: pointer;
display: inline-flex;
font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
font-weight: 400;
justify-content: center;
line-height: 1.25;
margin: 0;
/*min-height: 2rem;*/
height: 1rem;
padding: calc(.875rem - 1px) calc(1.5rem - 1px);
position: relative;
text-decoration: none;
transition: all 250ms;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: baseline;
width: auto;
}
.button-6:hover,
.button-6:focus {
background-color: #85a5ff;
box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}
.button-6:hover {
transform: translateY(-1px);
}
.button-6:active {
background-color: #85a5ff;
box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
transform: translateY(0);
}