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
2727It allows for easy listing and searching of users and worksapces.
2828When selecting a user, the UI will show the user's details and workspaces, as you can in the following screenshot:
2929
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 >
3133
3234To 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.
3335
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ const StyledBlogTemplate = styled.div`
4848 margin: 8rem auto;
4949 box-shadow: ${ shadows . light } ;
5050 background-color: ${ colors . white } ;
51+ overflow: hidden;
5152
5253 .contents {
5354 padding: 5rem 3rem;
@@ -119,6 +120,26 @@ const StyledBlogTemplate = styled.div`
119120 ol, ul {
120121 margin: 3rem 0 3rem 5rem;
121122 }
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+ }
122143`
123144
124145
You can’t perform that action at this time.
0 commit comments