Skip to content

Commit 075487c

Browse files
authored
Fix: Mobile image css (#40)
1 parent c61d067 commit 075487c

2 files changed

Lines changed: 17 additions & 17 deletions

File tree

docs/devices/mobile.mdx

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ Your dashboard includes a search box and familiar sections like **Your Work** an
3030
- **Projects** <br/>
3131
This screen shows all the projects you have access to, along with your role and the active issues count. Tap the star icon to add a project to your **Favorites** for quick access.
3232

33-
<div class="container">
34-
<div class="box">
33+
<div class="mobile-img-container">
34+
<div class="mobile-img-box">
3535
<img src="https://media.docs.plane.so/mobile/app-home.webp" alt="Home" width="300"/>
3636
</div>
37-
<div class="box">
37+
<div class="mobile-img-box">
3838
<img src="https://media.docs.plane.so/mobile/app-projects.webp" alt="Projects" width="300"/>
3939
</div>
4040
</div>
@@ -46,11 +46,11 @@ Need to create a new issue? Tap the + Create button. A simple modal will pop up,
4646
- Tap the **+** icon at the bottom left to assign members, priority, state, and other properties.
4747
- Hit the **Create** button to add it to your project.
4848

49-
<div class="container">
50-
<div class="box">
49+
<div class="mobile-img-container">
50+
<div class="mobile-img-box">
5151
<img src="https://media.docs.plane.so/mobile/app-create-issue.webp" alt="Create issue" width="300"/>
5252
</div>
53-
<div class="box">
53+
<div class="mobile-img-box">
5454
<img src="https://media.docs.plane.so/mobile/app-issue-properties.webp" alt="Issue properties" width="300"/>
5555
</div>
5656
</div>
@@ -61,11 +61,11 @@ Stay updated with notifications about issues you’ve created, are assigned to,
6161
- **Profile** <br/>
6262
View your profile and manage your account here. You can also switch between workspaces or log out of the app from this screen.
6363

64-
<div class="container">
65-
<div class="box">
64+
<div class="mobile-img-container">
65+
<div class="mobile-img-box">
6666
<img src="https://media.docs.plane.so/mobile/app-inbox.webp" alt="Inbox" width="300"/>
6767
</div>
68-
<div class="box">
68+
<div class="mobile-img-box">
6969
<img src="https://media.docs.plane.so/mobile/app-profile.webp" alt="Profile" width="300"/>
7070
</div>
7171
</div>
@@ -95,11 +95,11 @@ View a list of all, active and backlog issues.
9595

9696
- Click the **+ Add** button on the bottom left to add sub-issues and relations. You can also swipe left or right to view sub-issues, relations, links, and attachments.
9797

98-
<div class="container">
99-
<div class="box">
98+
<div class="mobile-img-container">
99+
<div class="mobile-img-box">
100100
<img src="https://media.docs.plane.so/mobile/app-issues.webp" alt="Issues" width="300"/>
101101
</div>
102-
<div class="box">
102+
<div class="mobile-img-box">
103103
<img src="https://media.docs.plane.so/mobile/app-issue-details.webp" alt="Issue details" width="300"/>
104104
</div>
105105
</div>
@@ -119,11 +119,11 @@ View a list of all, active and backlog issues.
119119
- **Pages** <br/>
120120
View all project pages, whether public, private, or archived. You can mark important pages as favorites or search for specific content.
121121

122-
<div class="container">
123-
<div class="box">
122+
<div class="mobile-img-container">
123+
<div class="mobile-img-box">
124124
<img src="https://media.docs.plane.so/mobile/app-cycles.webp" alt="Cycles" width="300"/>
125125
</div>
126-
<div class="box">
126+
<div class="mobile-img-box">
127127
<img src="https://media.docs.plane.so/mobile/app-modules.webp" alt="Modules" width="300"/>
128128
</div>
129129
</div>

src/css/custom.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,15 +409,15 @@ table thead tr {
409409
border-bottom: none;
410410
}
411411

412-
.container{
412+
.mobile-img-container{
413413
display:flex;
414414
flex-direction: row;
415415
justify-content: center;
416416
align-items: center;
417417
flex-wrap: wrap;
418418

419419
}
420-
.box{
420+
.mobile-img-box{
421421
display:flex;
422422
flex-direction: column;
423423
align-items: center;

0 commit comments

Comments
 (0)