Skip to content

Commit

Permalink
added scrollability to ER preview card
Browse files Browse the repository at this point in the history
  • Loading branch information
Depayan Mondal committed Dec 7, 2024
1 parent ba61b42 commit 70bd16c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
15 changes: 11 additions & 4 deletions app/styles/tasks.css
Original file line number Diff line number Diff line change
Expand Up @@ -438,14 +438,20 @@
padding: 18px;
border-radius: 10px;
background-color: var(--white);
overflow: auto;
/* overflow-y: scroll; */
position: absolute;
left: 30%;
right: 30%;
max-width: 60%;
max-height: 90%;
gap: 20px;
display: flex;
flex-direction: column;
}
@media (max-width: 768px), (max-height: 100vh) and (orientation: portrait) {
.extension-form__container-main {
max-width: 95%;
}
}
.extension-form__container-main:hover {
cursor: default;
}
Expand All @@ -465,6 +471,7 @@
}

.extension-form__content {
/* overflow: auto; */
display: flex;
justify-content: center;
align-items: center;
Expand Down Expand Up @@ -705,13 +712,13 @@
td {
padding: 8px 2px;
vertical-align: top;
min-width: 50%;
max-width: 20%;
}
.latest-table {
width: 100%;
}
.latest-extension-info__content th {
text-align: right;
text-align: left;
}
.latest-extension-info__content td {
text-align: left;
Expand Down
6 changes: 3 additions & 3 deletions config/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require('dotenv').config();
module.exports = function (environment) {
let ENV = {
modulePrefix: 'website-my',
environment,
environment: 'development',
rootURL: '/',
locationType: 'auto',
EmberENV: {
Expand All @@ -24,14 +24,14 @@ module.exports = function (environment) {
},
};

ENV.BASE_API_URL = 'https://api.realdevsquad.com';
ENV.BASE_API_URL = 'http://localhost:4000';
ENV.MIXPANEL_TOKEN = process.env.MIXPANEL_TOKEN || 'DUMMY_TOKEN';
ENV.ANDROID_GITHUB_URL =
'https://play.google.com/store/apps/details?id=com.github.android';
ENV.RDS_ANDROID_SCHEME = 'app://realdevsquad.com';

if (environment === 'development') {
ENV.BASE_API_URL = 'http://localhost:3000';
ENV.BASE_API_URL = 'http://localhost:4000';
ENV.STATUS_SITE = 'https://staging-status.realdevsquad.com';
ENV.MIXPANEL_TOKEN = 'TEST_TOKEN';
ENV['ember-cli-mirage'] = {
Expand Down

0 comments on commit 70bd16c

Please sign in to comment.