Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/_sass/_breakpoints.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@ $breakpoint-wide: 1600px;
@content
}
}

@mixin maxBreakpoint($breakpoint) {
@media screen and (max-width: $breakpoint) {
@content
}
}
25 changes: 25 additions & 0 deletions docs/_sass/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,31 @@ button {
font-size: 2.25em;
}
}

img {
display: block;
margin-left: auto;
margin-right: auto;
padding-bottom: 20px;

@include maxBreakpoint($breakpoint-tablet) {
width: 100%;
height: 100%;
max-width: auto;
max-height: auto;
}

@include breakpoint($breakpoint-tablet) {
max-width: -webkit-fill-available;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Non-webkit browsers like Firefox do not support this value, causing overflown images. See #72249

max-height: -webkit-fill-available;
}
}

.img-wrap {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
}

.link {
Expand Down
12 changes: 7 additions & 5 deletions docs/articles/send-money/The-Free-Plan.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ The free plan is ideal for start-ups and small businesses to manage expenses. Wi
- Navigate to new.expensify.com, enter your company email address, and set a password
- Click the **green “+”** button and select **_New workspace_**

<img class="image" width="400" src="/assets/images/new-workspace.png">
<img width="400" src="/assets/images/new-workspace.png">

Once you’ve created your Workspace, you should receive a message from Concierge encouraging you to chat with your Setup Specialist.

<img class="image" width="800" src="/assets/images/chat-with-concierge-setup.png">
<img width="800" src="/assets/images/chat-with-concierge-setup.png">

- Click the link sent to you by Concierge, and your designated Setup Specialist will guide you through how to configure your company setup.

<img class="image" width="400" src="/assets/images/chat-with-setup-specialist.png">
<img width="800" src="/assets/images/chat-with-setup-specialist.png">

Once you’ve completed your company setup, you should have done the following:

Expand All @@ -44,8 +44,10 @@ Once you’ve completed your company setup, you should have done the following:
# Managing the Free Plan
To access your workspace settings, click your profile icon and then on your workspace name:

<img class="image" width="400" src="/assets/images/profile-settings.png">
<img class="image" width="400" src="/assets/images/workspace-settings.png">
<div class="img-wrap">
<img width="400" src="/assets/images/profile-settings.png">
<img width="400" src="/assets/images/workspace-settings.png">
</div>

This menu allows you to manage your workspace members, issue additional Expensify Cards, and utilize this plan’s various bill pay and payment options.

Expand Down
Loading