Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vivid Code Gen #2516

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions components/Archive.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.archiveImage{
width: 13px;
height: 13px;
}
11 changes: 11 additions & 0 deletions components/Archive.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import styles from "./Archive.module.css";
import archive from "./archive.svg";
export const Archive = ({ override }: { override?: React.CSSProperties }) => {
return (
<img
className={styles.archiveImage}
src={archive.src}
style={override}
/>
);
};
4 changes: 4 additions & 0 deletions components/At.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.atComponent{
width: 13px;
height: 13px;
}
5 changes: 5 additions & 0 deletions components/At.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import styles from "./At.module.css";
import at from "./at.svg";
export const At = ({ override }: { override?: React.CSSProperties }) => {
return <img className={styles.atComponent} src={at.src} style={override} />;
};
4 changes: 4 additions & 0 deletions components/Calendar.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.calendarComponent{
width: 13px;
height: 13px;
}
11 changes: 11 additions & 0 deletions components/Calendar.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import styles from "./Calendar.module.css";
import calendar from "./calendar.svg";
export const Calendar = ({ override }: { override?: React.CSSProperties }) => {
return (
<img
className={styles.calendarComponent}
src={calendar.src}
style={override}
/>
);
};
4 changes: 4 additions & 0 deletions components/Compose.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.composeImage{
width: 14px;
height: 14px;
}
11 changes: 11 additions & 0 deletions components/Compose.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import styles from "./Compose.module.css";
import compose from "./compose.svg";
export const Compose = ({ override }: { override?: React.CSSProperties }) => {
return (
<img
className={styles.composeImage}
src={compose.src}
style={override}
/>
);
};
4 changes: 4 additions & 0 deletions components/Contacts.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.contactsComponent{
width: 13px;
height: 13px;
}
11 changes: 11 additions & 0 deletions components/Contacts.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import styles from "./Contacts.module.css";
import contacts from "./contacts.svg";
export const Contacts = ({ override }: { override?: React.CSSProperties }) => {
return (
<img
className={styles.contactsComponent}
src={contacts.src}
style={override}
/>
);
};
4 changes: 4 additions & 0 deletions components/Draft.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.draftImage{
width: 11px;
height: 13px;
}
5 changes: 5 additions & 0 deletions components/Draft.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import styles from "./Draft.module.css";
import draft from "./draft.svg";
export const Draft = ({ override }: { override?: React.CSSProperties }) => {
return (<img className={styles.draftImage} src={draft.src} style={override} />);
};
14 changes: 14 additions & 0 deletions components/Header.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.mail{
color: rgba(255, 255, 255, 0.28);
font-size: 13px;
font-weight: 500;
line-height: 16.9px;
}
.headerComponent{
display: flex;
align-items: center;
height: fit-content;
padding: 8px 20px;
border-radius: 4px;
width: 239px;
}
14 changes: 14 additions & 0 deletions components/Header.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import styles from "./Header.module.css";
export const Header = ({
override,
headerText,
}: {
override?: React.CSSProperties;
headerText: string;
}) => {
return (
<div className={styles.headerComponent} style={override}>
<p className={styles.mail}>{headerText}</p>
</div>
);
};
4 changes: 4 additions & 0 deletions components/Import.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.importComponent {
width: 13px;
height: 12px;
}
13 changes: 13 additions & 0 deletions components/Import.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import styles from "./Import.module.css";
import import from "./import.svg";


export const Import = ({
override
}: {
override?: React.CSSProperties;
}) => {


return <img className={styles.importComponent} src={import.src} style={override} />;
};
4 changes: 4 additions & 0 deletions components/InboxIcon.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.inboxIconComponent {
width: 16px;
height: 16px;
}
11 changes: 11 additions & 0 deletions components/InboxIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import styles from "./InboxIcon.module.css";
import inboxIcon from "./inboxIcon.svg";
export const InboxIcon = ({ override }: { override?: React.CSSProperties }) => {
return (
<img
className={styles.inboxIconComponent}
src={inboxIcon.src}
style={override}
/>
);
};
4 changes: 4 additions & 0 deletions components/Invite.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.inviteComponent{
width: 13px;
height: 12px;
}
7 changes: 7 additions & 0 deletions components/Invite.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import styles from "./Invite.module.css";
import invite from "./invite.svg";
export const Invite = ({ override }: { override?: React.CSSProperties }) => {
return (
<img className={styles.inviteComponent} src={invite.src} style={override} />
);
};
4 changes: 4 additions & 0 deletions components/Search.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.searchComponent{
width: 14px;
height: 14px;
}
7 changes: 7 additions & 0 deletions components/Search.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import styles from "./Search.module.css";
import search from "./search.svg";
export const Search = ({ override }: { override?: React.CSSProperties }) => {
return (
<img className={styles.searchComponent} src={search.src} style={override} />
);
};
4 changes: 4 additions & 0 deletions components/Send.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.sendComponent{
width: 13px;
height: 13px;
}
7 changes: 7 additions & 0 deletions components/Send.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import styles from "./Send.module.css";
import send from "./send.svg";
export const Send = ({ override }: { override?: React.CSSProperties }) => {
return (
<img className={styles.sendComponent} src={send.src} style={override} />
);
};
4 changes: 4 additions & 0 deletions components/SendFeedback.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.sendFeedbackImage{
width: 13px;
height: 13px;
}
15 changes: 15 additions & 0 deletions components/SendFeedback.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import styles from "./SendFeedback.module.css";
import sendFeedback from "./sendFeedback.svg";
export const SendFeedback = ({
override,
}: {
override?: React.CSSProperties;
}) => {
return (
<img
className={styles.sendFeedbackImage}
src={sendFeedback.src}
style={override}
/>
);
};
4 changes: 4 additions & 0 deletions components/Settings.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.settingsImage{
width: 13px;
height: 13px;
}
11 changes: 11 additions & 0 deletions components/Settings.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import styles from "./Settings.module.css";
import settings from "./settings.svg";
export const Settings = ({ override }: { override?: React.CSSProperties }) => {
return (
<img
className={styles.settingsImage}
src={settings.src}
style={override}
/>
);
};
95 changes: 95 additions & 0 deletions components/Sidebar.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
.imageClass{
position: absolute;
inset: 0;
height: 100%;
width: 100%;
}
.mailIconClass{
overflow: hidden;
border-radius: 10px;
position: relative;
width: 38px;
height: 38px;
}
.skiffMailClass{
color: rgb(255, 255, 255);
font-size: 15px;
font-weight: 300;
line-height: 19.5px;
}
.aryamanWorkspaceClass{
color: rgba(255, 255, 255, 0.54);
font-size: 13px;
font-weight: 300;
line-height: 16.9px;
}
.textClass{
display: flex;
flex-direction: column;
align-items: flex-start;
height: fit-content;
width: fit-content;
}
.workspaceClass{
display: flex;
align-items: flex-start;
gap: 12px;
height: fit-content;
padding: 10px;
width: 100%;
}
.overallOptionsClass{
display: flex;
flex-direction: column;
align-items: flex-start;
height: fit-content;
padding: 0px 0px 13px;
width: 100%;
border-style: solid;
border-color: rgba(255, 255, 255, 0.04);
border-bottom-width: 1px;
}
.mailTabsClass{
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 2px;
height: fit-content;
padding: 0px 0px 12px;
width: 239px;
}
.mailOptionsClass{
overflow: hidden;
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px 0px 140px;
width: 100%;
height: 598px;
}
.shareOptionsClass{
display: flex;
flex-direction: column;
align-items: flex-start;
height: fit-content;
width: 100%;
}
.sidebarComponentClass{
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
padding: 0px 1px 0px 0px;
width: 100%;
height: 902px;
border-style: solid;
border-color: rgba(255, 255, 255, 0.04);
border-right-width: 1px;
background: linear-gradient(
rgba(255, 255, 255, 0.1),
rgba(255, 255, 255, 0.1)
),
linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0));
font-family: Roboto;
}
Loading