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

Better layout for Feature Store #706

Merged
merged 1 commit into from
Apr 14, 2020
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
51 changes: 17 additions & 34 deletions pages/_lang/feature/_detail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,18 +86,6 @@ export default class extends Vue {
realName: "share",
mappedName: "Create Share"
},
{
realName: "geolocation",
mappedName: "Use Geolocation"
},
{
realName: "clipboard",
mappedName: "Copy to Clipboard"
},
{
realName: "adaptiveCards",
mappedName: "Adaptive Cards"
},
{
realName: "installButton",
mappedName: "Install your PWA"
Expand Down Expand Up @@ -547,28 +535,15 @@ declare var awa: any;
text-decoration: underline;
}

// #leftSide > table > tbody > tr:nth-child(1) > td:nth-child(1),
// #leftSide > table > tbody > tr:nth-child(2) > td:nth-child(1) {
// font-size: 12px;
// font-weight: bold;
// width: 140px;
// }

// #leftSide > table > tbody > tr:nth-child(1) > td:nth-child(2),
// #leftSide > table > tbody > tr:nth-child(2) > td:nth-child(2) {
// font-size: 14px;
// font-weight: normal;
// }

#contentContainer {
display: flex;
padding-top: 30px;
padding-left: 159px;
padding-right: 159px;
flex-direction: column-reverse;

#leftSide {
flex: 1;
width: 50%;
// width: 50%;
margin-right: 20px;

h3 {
Expand Down Expand Up @@ -600,8 +575,7 @@ declare var awa: any;
#rightSide {
display: initial;
flex: 1;
width: 50%;
margin-left: 20px;
margin-top: 28px;

h3 {
font-size: 24px;
Expand Down Expand Up @@ -657,7 +631,6 @@ declare var awa: any;

@media (max-width: 650px) {
#docsMain #contentContainer {
flex-direction: column;
padding-left: 25px;
padding-right: 25px;
}
Expand All @@ -668,10 +641,6 @@ declare var awa: any;
margin-right: 0px;
margin-left: 0px;
}

#docsMain #contentContainer #rightSide {
margin-top: 4em;
}
}

@media (max-width: 630px) {
Expand All @@ -694,4 +663,18 @@ declare var awa: any;
display: none;
}
}

div#rightSide::before {
content: "Quick startup guide";
font-size: 28px;
font-weight: bold;
margin: 28px 0px 16px 0;
}

div#leftSide::before {
content: "Documentation";
font-size: 28px;
font-weight: bold;
margin: 28px 0px 16px 0;
}
</style>
12 changes: 0 additions & 12 deletions store/modules/windows/windows.actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,6 @@ export const actions: Actions<State, RootState> = {
title: "Sign In with Microsoft, Google, Facebook",
description: "Web component that lets your users sign-in using their Microsoft, Google, or Facebook account. Your app receives their email address, name, and profile picture."
},
{
title: "Copy to Clipboard",
description: "A simple component that uses the Clipboard API to allow your app to copy text to the users clipboard"
},
{
title: "Use Geolocation",
description: "A simple component that uses the Gelocation API to allow your app to ask for the users current location"
},
{
title: "Adaptive Cards",
description: " A component that helps you take advantage of Adaptive Cards."
},
{
title: "Immersive Reader",
description: "Immersive Reader mode makes it easier for users to read your content on the web"
Expand Down