angular/projects/shell-chrome/src/popups/not-angular.html
Emma Twersky 3633be9875 fix(devtools): Style Changes to Profiler, general color scheme, controls & responsiveness (rangle/angular-devtools#468)
* make angular version number copyable

* Make version selectable

* change instructions and icons in profiler

* make font size responsive

* fix: move checkbox to control panel

* fix: change loading indicator to match style

* fix: profiler tab style of graphs

* fix: version responsive to size

* fix: version colors

* fix: flame graph colors and change detection

Co-authored-by: Emma Twersky <emmatwersky@google.com>
2020-08-24 23:19:37 +03:00

51 lines
913 B
HTML

<html>
<head>
<style>
* {
margin: 0;
padding: 0;
}
.header-text {
margin: 0px;
text-align: center;
padding-bottom: 8px;
}
.modal-content {
min-width: 300px;
padding: 10px;
}
.icon {
width: 20px;
margin-right: 16px;
}
.message {
display: flex;
align-items: center;
padding: 5px;
}
code {
font-size: 1em;
font-family: monospace;
}
p:not(:last-child) {
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="modal-content">
<h4 class="header-text">Angular DevTools</h4>
<div class="message">
<img class="icon" src="/assets/cross.png" />
<p>This page is not using Angular, or it has a strict extension policy.</p>
</div>
</div>
</body>
</html>