This repository was archived by the owner on Apr 19, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,9 @@ This release ships with a new web UI for administrative tasks. The UI is particu
27
27
It allows for easy listing and searching of users and worksapces.
28
28
When selecting a user, the UI will show the user's details and workspaces, as you can in the following screenshot:
29
29
30
- ![ Gitpod Admin UI] ( ./self-hosted-0.4.0/sh-userdetails2.png )
30
+ <div class =" scale " >
31
+ <img src="./self-hosted-0.4.0/sh-userdetails2.png" alt="Gitpod Admin UI">
32
+ </div >
31
33
32
34
To try the new admin interface in Gitpod Self-Hosted, you'll need to assign the "admin" privilege to your user and open /admin in your browser.
33
35
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ const StyledBlogTemplate = styled.div`
48
48
margin: 8rem auto;
49
49
box-shadow: ${ shadows . light } ;
50
50
background-color: ${ colors . white } ;
51
+ overflow: hidden;
51
52
52
53
.contents {
53
54
padding: 5rem 3rem;
@@ -119,6 +120,26 @@ const StyledBlogTemplate = styled.div`
119
120
ol, ul {
120
121
margin: 3rem 0 3rem 5rem;
121
122
}
123
+
124
+ .scale {
125
+ transform: scale(1.3);
126
+ margin-top: 14rem;
127
+
128
+ @media(max-width: 680px) {
129
+ transform: scale(1.2);
130
+ margin-top: 9rem;
131
+ }
132
+
133
+ @media(max-width: 610px) {
134
+ transform: scale(1.1);
135
+ margin: 8rem 0;
136
+ }
137
+
138
+ @media(max-width: 610px) {
139
+ transform: scale(1);
140
+ margin: 4rem 0;
141
+ }
142
+ }
122
143
`
123
144
124
145
You can’t perform that action at this time.
0 commit comments