Skip to content

Commit

Permalink
Fix Issue layer5io#198
Browse files Browse the repository at this point in the history
Signed-off-by: nikhilkalburgi <nikhilkalburgi19@gmail.com>
  • Loading branch information
nikhilkalburgi committed Feb 13, 2024
1 parent 1789b60 commit 8cec15a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 32 deletions.
38 changes: 8 additions & 30 deletions assets/scss/_styles_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -352,9 +352,6 @@ a:not([href]):not([class]):hover {
> img:hover {
filter: brightness(0) invert(1);
}
@media (max-width:768px){
width: 277px;
}
}

.dashboard {
Expand Down Expand Up @@ -383,13 +380,6 @@ a:not([href]):not([class]):hover {
display: block;
text-rendering: optimizelegibility;
background-clip: text, text;
@media (max-width:768px){
font-size: 3.5rem;
text-align: center;
}
// @media (max-width:1200px){
// }

}
.dash-tangle {
width: 78.14231rem;
Expand All @@ -408,18 +398,6 @@ a:not([href]):not([class]):hover {
z-index: -5;
background-clip: content-box;
-webkit-background-clip: padding-box;

@media (max-width: 1440px) {
top: -5rem;
right: -28rem;
position: fixed;
}
@media (max-width: 768px) {
width: 129.14rem;
top: 7rem;
right: -70rem;
position: fixed;
}
}

.dash-ircle-container {
Expand Down Expand Up @@ -459,11 +437,6 @@ a:not([href]):not([class]):hover {
align-items: center;
text-align: right;

@media (max-width: 768px) {
flex-wrap: wrap;
justify-content: center;
}

a.dash-sign {
color: #fffbf1;
text-shadow: 0 20px 25px #2e2e31, 0 40px 60px #2e2e31;
Expand All @@ -482,9 +455,6 @@ a:not([href]):not([class]):hover {
&:hover {
color: "#EBC017" !important;
}
@media (max-width: 1440px) {
margin: 0rem;
}
}

a.dash-sign:before,
Expand Down Expand Up @@ -538,3 +508,11 @@ a:not([href]):not([class]):hover {
.sc-imWYAI.sc-fTFjTM.dCEJze.hRziAa {
color: red;
}

//Copy Button
.click-to-copy button{
aspect-ratio: 1;
box-shadow: 1px 1px 5px #636567!important;
top: 6px!important;
right: 10px!important;
}
2 changes: 0 additions & 2 deletions content/en/cloud/reference/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@ In order to authenticate to Layer5 Cloud's REST API, you need to generate and us
To authenticate with the API, pass the token as a bearer token in the `Authorization` header. For example, in cURL:

```bash

curl <protocol>://<Layer5-cloud-hostname>/<API> \
-H "Authorization: Bearer <token>"

```

- Replace `<protocol>` with `http` or `https` depending on your Layer5 Cloud instance.
Expand Down

0 comments on commit 8cec15a

Please sign in to comment.