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

acs icon #160

Merged
merged 1 commit into from
Aug 22, 2023
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
Binary file added Project/public/assets/images/acsIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 11 additions & 3 deletions Project/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ body {
padding-bottom: 1em;
padding-right: 1em;
padding-left: 1em;
zoom: 80%;
zoom: 90%;
}

/*********************************
Expand Down Expand Up @@ -41,13 +41,17 @@ h6 {
}

.header {
padding-top: 3em;
padding-bottom: 2em;
padding-top: 2em;
padding-bottom: 1em;
margin-left: 1em;
margin-right: 1em;
border-bottom: 1px solid #414141;
}

.nav-bar-icon {
height: 6em;
}

.sdk-docs-header {
text-align: right;
}
Expand Down Expand Up @@ -539,6 +543,10 @@ div.ms-Checkbox>input[type="checkbox"]+label.ms-Checkbox-label>span.ms-Checkbox-
vertical-align: middle;
}

.inline-flex {
display: inline-flex;
}

/*********************************
* Margin and Padding *
**********************************/
Expand Down
7 changes: 5 additions & 2 deletions Project/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ function App() {
<ToastContainer />
<div className="header ms-Grid">
<div className="ms-Grid-row">
<div className="ms-Grid-col ms-lg6">
<h1>
<div className="ms-Grid-col ms-lg6 inline-flex align-items-center">
<div className="inline-block">
<img className="nav-bar-icon" src="./assets/images/acsIcon.png"></img>
</div>
<h1 className="inline-block">
Azure Communication Services - Calling SDK for Javascript - { VWebSdkVersion() }
</h1>
</div>
Expand Down
Loading